Module Name:    src
Committed By:   christos
Date:           Sun Dec 16 17:30:57 UTC 2018

Modified Files:
        src/usr.bin/make/unit-tests: varquote.mk

Log Message:
Use printf instead of echo since we can't portably use \ in string (from sjg@)
http://pubs.opengroup.org/onlinepubs/009695399/utilities/echo.html


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 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.2 src/usr.bin/make/unit-tests/varquote.mk:1.3
--- src/usr.bin/make/unit-tests/varquote.mk:1.2	Sat May 26 21:14:51 2018
+++ src/usr.bin/make/unit-tests/varquote.mk	Sun Dec 16 12:30:57 2018
@@ -1,4 +1,4 @@
-# $NetBSD: varquote.mk,v 1.2 2018/05/27 01:14:51 christos Exp $
+# $NetBSD: varquote.mk,v 1.3 2018/12/16 17:30:57 christos Exp $
 #
 # Test VAR:q modifier
 
@@ -10,5 +10,5 @@ all:
 	@${MAKE} -f ${MAKEFILE} REPROFLAGS=${REPROFLAGS:q}
 .else
 all:
-	@echo ${REPROFLAGS}
+	@printf ${REPROFLAGS}
 .endif

Reply via email to