diff options
author | Roland McGrath <roland@gnu.org> | 2004-08-20 20:12:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-08-20 20:12:43 +0000 |
commit | e7f4d2bf43c266b2219a14b783b55df423ce5246 (patch) | |
tree | c1fd482152ac7507f4b8db075594a3293f2a6948 /csu | |
parent | a24c5ac46258a0fff7a00c501440ba49381a2338 (diff) | |
download | glibc-e7f4d2bf43c266b2219a14b783b55df423ce5246.tar glibc-e7f4d2bf43c266b2219a14b783b55df423ce5246.tar.gz glibc-e7f4d2bf43c266b2219a14b783b55df423ce5246.tar.bz2 glibc-e7f4d2bf43c266b2219a14b783b55df423ce5246.zip |
2004-08-20 Roland McGrath <roland@frob.com>
* csu/Makefile ($(objpfx)version-info.h): Use printf in place
of echo -e for POSIX.2 portability.
Reported by Paul Jarc <prj@po.cwru.edu>.
Diffstat (limited to 'csu')
-rw-r--r-- | csu/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
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 <linux/version.h>\nUTS_RELEASE"\ + linux*) version=`(printf '%s\n%s\n' \ + '#include <linux/version.h>' \ + 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)"; \ |