From: Björn Jacke Date: Wed, 20 Feb 2013 16:06:49 +0000 (+0100) Subject: build/autoconf: put ld check variable in quotes X-Git-Tag: tevent-0.9.18~118 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac9620b942d6d51a1c35c4177c3f241351fc1ebd;p=thirdparty%2Fsamba.git build/autoconf: put ld check variable in quotes Signed-off-by: Bjoern Jacke Reviewed-by: Stefan Metzmacher --- diff --git a/source3/configure.in b/source3/configure.in index 56c91903cb9..552535bfafe 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -229,7 +229,7 @@ dnl warnings when building modules. if test "$ac_cv_prog_gnu_ld" = "yes"; then ac_cv_gnu_ld_version=`$CC -Wl,-v /dev/null 2> /dev/null < /dev/null | grep "GNU ld"` # we need to make a 2nd (separate!) check on the output of stderr, see bug #7825: - if test -z ${ac_cv_gnu_ld_version} ; then + if test -z "$ac_cv_gnu_ld_version" ; then ac_cv_gnu_ld_version=`$CC -Wl,-v /dev/null 2>&1 > /dev/null < /dev/null | grep "GNU ld"` fi AC_MSG_CHECKING(GNU ld release date)