aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Aulery <saulery@free.fr>2014-11-26 18:50:16 +0100
committerGerd Hoffmann <kraxel@redhat.com>2014-11-27 09:18:35 +0100
commit73c0526b28a3e50382a6f9b1669f9bbb7093384f (patch)
tree5b81b887f69a8480e3f184579e29c636599fe80b
parentae777f00a3dc95b450bd999a568dcff76e3ace86 (diff)
downloadfbida-73c0526b28a3e50382a6f9b1669f9bbb7093384f.tar.gz
Use printf instead of echo -e in makefile
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 <saulery@free.fr> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r--mk/Autoconf.mk2
1 files changed, 1 insertions, 1 deletions
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