Module Name: src
Committed By: christos
Date: Sun Dec 16 18:53:34 UTC 2018
Modified Files:
src/usr.bin/make/unit-tests: varquote.mk
Log Message:
use %s formats to avoid -flag confusion (from sjg)
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/usr.bin/make/unit-tests/varquote.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/unit-tests/varquote.mk
diff -u src/usr.bin/make/unit-tests/varquote.mk:1.3 src/usr.bin/make/unit-tests/varquote.mk:1.4
--- src/usr.bin/make/unit-tests/varquote.mk:1.3 Sun Dec 16 12:30:57 2018
+++ src/usr.bin/make/unit-tests/varquote.mk Sun Dec 16 13:53:34 2018
@@ -1,4 +1,4 @@
-# $NetBSD: varquote.mk,v 1.3 2018/12/16 17:30:57 christos Exp $
+# $NetBSD: varquote.mk,v 1.4 2018/12/16 18:53:34 christos Exp $
#
# Test VAR:q modifier
@@ -10,5 +10,5 @@ all:
@${MAKE} -f ${MAKEFILE} REPROFLAGS=${REPROFLAGS:q}
.else
all:
- @printf ${REPROFLAGS}
+ @printf "%s %s\n" ${REPROFLAGS}
.endif