summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-08-05 11:00:59 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-08-05 11:00:59 +0000
commit152b1a52c771d5c32e300c3b940b40175873ec85 (patch)
tree4478fe0852ea537869797763d160955b33b008ad /usr.bin
parent06f4e73d9a8502c49c141e026e054966511ca1db (diff)
fix curly in targets... broke it and no-one saw the difference, so it's
probably not used that often.
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 34ce909912e..cf114ecfd55 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: parse.c,v 1.79 2007/07/30 10:03:11 espie Exp $ */
+/* $OpenBSD: parse.c,v 1.80 2007/08/05 11:00:58 espie Exp $ */
/* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */
/*
@@ -592,7 +592,7 @@ add_target_nodes(const char *line)
Dir_Expand(line, &emptyPath, &curTargs);
Lst_Destroy(&emptyPath, Dir_Destroy);
while ((targName = (char *)Lst_DeQueue(&curTargs)) != NULL) {
- add_target_node(line);
+ add_target_node(targName);
}
Lst_Destroy(&curTargs, NOFREE);
} else {