From e91e2dec63d75804dd922f6c14af6df8b0f7dde5 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Mon, 30 Aug 2010 21:32:35 +0200 Subject: [PATCH] Simplify recent configure quoting portability workaround. * configure.ac: Simplify setting of timestamp_string. Signed-off-by: Ralf Wildenhues --- ChangeLog | 5 +++++ configure.ac | 5 +---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d7302320e..60a2297c1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-08-30 Eric Blake + + Simplify recent configure quoting portability workaround. + * configure.ac: Simplify setting of timestamp_string. + 2010-08-30 Charles Wilson Update path conversion warning messages diff --git a/configure.ac b/configure.ac index 87f3ce1dd..aaa946f73 100644 --- a/configure.ac +++ b/configure.ac @@ -113,10 +113,7 @@ case $lt_alpha in TIMESTAMP= ;; esac -timestamp_string= -if test -n "$TIMESTAMP"; then - timestamp_string=" (Build:$TIMESTAMP)" -fi +timestamp_string="${TIMESTAMP:+ (Build:$TIMESTAMP)}" AS_BOX([Configuring AC_PACKAGE_TARNAME$timestamp_string AC_PACKAGE_VERSION]) echo AC_SUBST([TIMESTAMP]) -- 2.47.2