From: Ralf Wildenhues Date: Sun, 29 Aug 2010 14:54:33 +0000 (+0200) Subject: Work around yet another shell quoting portability issue. X-Git-Tag: v2.4~70 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=957541fbe23db58feaf554a68a852c99839a19f3;p=thirdparty%2Flibtool.git 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. --- 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])