diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-01-17 15:58:43 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-01-17 15:58:43 +0000 |
commit | 8875cdf025f649bfa287a5cc49e4dc0aa00c71dc (patch) | |
tree | 79638564b2bd622088e3ffda13cbc9cdcb272883 | |
parent | d1699118c9d739a922ad58343864f2c35b9f7b41 (diff) | |
download | dbus-8875cdf025f649bfa287a5cc49e4dc0aa00c71dc.tar.gz |
Correct test for LIBTOOLIZE by quoting it
Based on a patch from Roland <blueburn85 gmail com>.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=73278
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ fi } LIBTOOLIZE=`which libtoolize` -if ! test -f $LIBTOOLIZE; then +if ! test -f "$LIBTOOLIZE"; then LIBTOOLIZE=`which glibtoolize` fi |