1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

build/autoconf: put ld check variable in quotes

Signed-off-by: Bjoern Jacke <bj@sernet.de>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Björn Jacke 2013-02-20 17:06:49 +01:00
parent e4d85fa73d
commit ac9620b942

View File

@ -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)