From: Simon McVittie Date: Fri, 17 Jan 2014 15:58:43 +0000 (+0000) Subject: Correct test for LIBTOOLIZE by quoting it X-Git-Tag: dbus-1.8.0~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8875cdf025f649bfa287a5cc49e4dc0aa00c71dc;p=thirdparty%2Fdbus.git Correct test for LIBTOOLIZE by quoting it Based on a patch from Roland . Bug: https://bugs.freedesktop.org/show_bug.cgi?id=73278 --- diff --git a/autogen.sh b/autogen.sh index bff8257b4..91d4b09d8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -48,7 +48,7 @@ fi } LIBTOOLIZE=`which libtoolize` -if ! test -f $LIBTOOLIZE; then +if ! test -f "$LIBTOOLIZE"; then LIBTOOLIZE=`which glibtoolize` fi