diff options
author | Warner Losh <imp@FreeBSD.org> | 2003-09-07 02:16:10 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2003-09-07 02:16:10 +0000 |
commit | 87fdc84cba11d0856ce53b36a23386bb2b311282 (patch) | |
tree | c38947224a3cd415366731941779e0f8e4b55ddf /usr.bin/make | |
parent | fdae0df42a014a000dffdefa8a08e4f0bdf5205f (diff) | |
download | src-87fdc84cba11d0856ce53b36a23386bb2b311282.tar.gz src-87fdc84cba11d0856ce53b36a23386bb2b311282.zip |
Keep up with minor changes to NetBSD. Consider a variable empty when
not define.
Obtained From: NetBSD (rev 1.18; sjg)
Notes
Notes:
svn path=/head/; revision=119818
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/cond.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/cond.c b/usr.bin/make/cond.c index 8eab811f6317..65667669291f 100644 --- a/usr.bin/make/cond.c +++ b/usr.bin/make/cond.c @@ -803,7 +803,7 @@ error: if (condExpr[arglen] != '\0') { val = Var_Parse(&condExpr[arglen - 1], VAR_CMD, - doEval, &length, &doFree); + FALSE, &length, &doFree); if (val == var_Error) { t = Err; } else { |