From e7f4d2bf43c266b2219a14b783b55df423ce5246 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 20 Aug 2004 20:12:43 +0000 Subject: 2004-08-20 Roland McGrath * csu/Makefile ($(objpfx)version-info.h): Use printf in place of echo -e for POSIX.2 portability. Reported by Paul Jarc . --- csu/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'csu/Makefile') diff --git a/csu/Makefile b/csu/Makefile index f400a58686..fbbfe0050a 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -216,7 +216,9 @@ all-Banner-files = $(wildcard $(addsuffix /Banner, \ $(objpfx)version-info.h: $(common-objpfx)config.make $(all-Banner-files) $(make-target-directory) (case $(config-os) in \ - linux*) version=`(echo -e "#include \nUTS_RELEASE"\ + linux*) version=`(printf '%s\n%s\n' \ + '#include ' \ + UTS_RELEASE \ | $(CC) $(CPPFLAGS) -E -P - -DNOT_IN_libc=1 | \ sed -e 's/"\([^"]*\)".*/\1/p' -e d) 2>/dev/null`;\ if [ -z "$$version" ]; then \ @@ -231,8 +233,8 @@ $(objpfx)version-info.h: $(common-objpfx)config.make $(all-Banner-files) if [ -z "$$os" ]; then \ os=Linux; \ fi; \ - echo "\"Compiled on a $$os $$version system" \ - "on `date +%Y-%m-%d`.\\n\"" ;; \ + printf '"Compiled on a %s %s system on %s.\\n"\n' \ + "$$os" "$$version" "`date +%Y-%m-%d`";; \ *) ;; \ esac; \ files="$(all-Banner-files)"; \ -- cgit v1.2.3