From: Arran Cudbard-Bell Date: Sat, 3 Nov 2012 15:30:51 +0000 (+0000) Subject: Fix quoting for git program check X-Git-Tag: release_3_0_0_beta1~1608 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8443b023c19418a64d01dbad8520b2bae66425b0;p=thirdparty%2Ffreeradius-server.git Fix quoting for git program check --- diff --git a/configure b/configure index 9cad2cd5f39..1b4b1e2de2b 100755 --- a/configure +++ b/configure @@ -17975,7 +17975,7 @@ if test "x$developer" = "xyes"; then $as_echo "yes. Using $devflags" >&6; } fi - if test $GIT = yes; then + if test "x$GIT" = "xyes"; then RADIUSD_VERSION_COMMIT=`git log --pretty=format:'%h' -n 1` fi else diff --git a/configure.in b/configure.in index 89fbc6ebcda..d878714cca2 100644 --- a/configure.in +++ b/configure.in @@ -987,7 +987,7 @@ if test "x$developer" = "xyes"; then fi dnl append the current git hash onto the version string - if test $GIT = yes; then + if test "x$GIT" = "xyes"; then RADIUSD_VERSION_COMMIT=`git log --pretty=format:'%h' -n 1` fi else