libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Libtool branch, master, updated. v2.2.10-135-g957541f


From: Ralf Wildenhues
Subject: [SCM] GNU Libtool branch, master, updated. v2.2.10-135-g957541f
Date: Sun, 29 Aug 2010 14:59:38 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".

The branch, master has been updated
       via  957541fbe23db58feaf554a68a852c99839a19f3 (commit)
      from  f54621ca526d383ae6a120a11981be0a03aa1151 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 957541fbe23db58feaf554a68a852c99839a19f3
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Aug 29 16:54:33 2010 +0200

    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.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog    |    5 +++++
 configure.ac |    6 +++++-
 2 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index d054735..6650889 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2010-08-29  Ralf Wildenhues  <address@hidden>
 
+       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 e13ad43..87f3ce1 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])


hooks/post-receive
-- 
GNU Libtool



reply via email to

[Prev in Thread] Current Thread [Next in Thread]