From 957541fbe23db58feaf554a68a852c99839a19f3 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Sun, 29 Aug 2010 16:54:33 +0200 Subject: [PATCH] Work around yet another shell quoting portability issue. * configure.ac: Avoid nonportable quoted alternate variable value in unquoted here document, so Solaris 10 sh and Tru64 ksh do not print spurious extra quotes. --- ChangeLog | 5 +++++ configure.ac | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d0547357c..665088998 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2010-08-29 Ralf Wildenhues + Work around yet another shell quoting portability issue. + * configure.ac: Avoid nonportable quoted alternate variable + value in unquoted here document, so Solaris 10 sh and Tru64 + ksh do not print spurious extra quotes. + Silence order-only configure test for AIX make. * configure.ac: Also drop standard output, for AIX 5.1 make. diff --git a/configure.ac b/configure.ac index e13ad437e..87f3ce1dd 100644 --- a/configure.ac +++ b/configure.ac @@ -113,7 +113,11 @@ case $lt_alpha in TIMESTAMP= ;; esac -AS_BOX([Configuring AC_PACKAGE_TARNAME${TIMESTAMP:+" (Build:$TIMESTAMP)"} AC_PACKAGE_VERSION]) +timestamp_string= +if test -n "$TIMESTAMP"; then + timestamp_string=" (Build:$TIMESTAMP)" +fi +AS_BOX([Configuring AC_PACKAGE_TARNAME$timestamp_string AC_PACKAGE_VERSION]) echo AC_SUBST([TIMESTAMP]) AC_SUBST([package_revision]) -- 2.47.2