From 73c0526b28a3e50382a6f9b1669f9bbb7093384f Mon Sep 17 00:00:00 2001 From: Stéphane Aulery Date: Wed, 26 Nov 2014 18:50:16 +0100 Subject: Use printf instead of echo -e in makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As default /bin/sh, Debian use /bin/dash and Redhat /bin/sh. dash is POSIX-compliant and doesn't have -e option. printf is portable. Signed-off-by: Stéphane Aulery Signed-off-by: Gerd Hoffmann --- mk/Autoconf.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/Autoconf.mk b/mk/Autoconf.mk index 7608ea5..a2f6dd3 100644 --- a/mk/Autoconf.mk +++ b/mk/Autoconf.mk @@ -162,7 +162,7 @@ config: Make.config @true Make.config: $(srcdir)/GNUmakefile - @echo -e "$(make-config-q)" > $@ + @printf "$(make-config-q)" > $@ @echo @echo "Make.config written, edit if needed" @echo -- cgit