From fe94c36a7b64581adf250835b5d59d580dbee85c Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Mon, 19 Jul 2021 18:31:13 -0500 Subject: [PATCH] configure.ac: fix wrong constructions in environment setup for ENABLED_REPRODUCIBLE_BUILD. --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 0caa104dd..195cc8226 100644 --- a/configure.ac +++ b/configure.ac @@ -95,16 +95,16 @@ AC_ARG_ENABLE([reproducible-build], xxx_ar_flags=$(ar --help 2>&1) if test "$ENABLED_REPRODUCIBLE_BUILD" = "yes" then - AS_CASE([$xxx_ar_flags],[*'use zero for timestamps and uids/gids'*],[: ${AR_FLAGS="Dcr"}]) + AS_CASE([$xxx_ar_flags],[*'use zero for timestamps and uids/gids'*],[AR_FLAGS="Dcr"]) else - AS_CASE([$xxx_ar_flags],[*'use actual timestamps and uids/gids'*],[: ${AR_FLAGS="Ucru"}]) + AS_CASE([$xxx_ar_flags],[*'use actual timestamps and uids/gids'*],[AR_FLAGS="Ucru"]) fi xxx_ranlib_flags=$(ranlib --help 2>&1) if test "$ENABLED_REPRODUCIBLE_BUILD" = "yes" then - AS_CASE([$xxx_ranlib_flags],[*'Use zero for symbol map timestamp'*],[: ${RANLIB="ranlib -D"}]) + AS_CASE([$xxx_ranlib_flags],[*'Use zero for symbol map timestamp'*],[RANLIB="ranlib -D"]) else - AS_CASE([$xxx_ranlib_flags],[*'Use actual symbol map timestamp'*],[: ${RANLIB="ranlib -U"}]) + AS_CASE([$xxx_ranlib_flags],[*'Use actual symbol map timestamp'*],[RANLIB="ranlib -U"]) fi