summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1996-09-21 04:00:22 +0000
committerSteve Price <steve@FreeBSD.org>1996-09-21 04:00:22 +0000
commit43bb0e149c35bd0a4a74d81de23d552594a634af (patch)
tree918d2de8461592f4ee7109187e716fc53e5e55e6 /usr.bin/make
parent88ce2dfc415677a600f57ec69d18ecfd0577a900 (diff)
Notes
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/for.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/for.c b/usr.bin/make/for.c
index c93f3171f3c5..4f9da578ce0f 100644
--- a/usr.bin/make/for.c
+++ b/usr.bin/make/for.c
@@ -174,7 +174,7 @@ For_Eval (line)
#define ADDWORD() \
Buf_AddBytes(buf, ptr - wrd, (Byte *) wrd), \
Buf_AddByte(buf, (Byte) '\0'), \
- Lst_AtEnd(forLst, (ClientData) Buf_GetAll(buf, &varlen)), \
+ Lst_AtFront(forLst, (ClientData) Buf_GetAll(buf, &varlen)), \
Buf_Destroy(buf, FALSE)
for (ptr = sub; *ptr && isspace((unsigned char) *ptr); ptr++)