summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-23 18:37:13 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-23 18:37:13 +0000
commitf345c164c5a2b7e123b341f98af6d7c711bf6dbb (patch)
treeb720043e6a24336dc5e787d711e4efa8d73ae4ca /usr.bin
parent008deb0cc9a63aae4ee268716b45355ce76857e4 (diff)
nicer error message; netbsd pr#2651; enami@ba2.so-net.or.jp
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c
index a2099bd76b5..67fd0c7822c 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.7 1996/03/27 19:32:41 niklas Exp $ */
+/* $OpenBSD: parse.c,v 1.8 1996/07/23 18:37:12 deraadt Exp $ */
/* $NetBSD: parse.c,v 1.22 1996/03/15 21:52:41 christos Exp $ */
/*
@@ -2690,7 +2690,7 @@ Parse_MainName()
main = Lst_Init (FALSE);
if (mainNode == NILGNODE) {
- Punt ("make: no target to make.\n");
+ Punt ("no target to make.");
/*NOTREACHED*/
} else if (mainNode->type & OP_DOUBLEDEP) {
(void) Lst_AtEnd (main, (ClientData)mainNode);