From c449787ecf07a477bf0ca843175826917ee36b9a Mon Sep 17 00:00:00 2001 From: magnum Date: Sun, 18 May 2014 20:15:23 +0200 Subject: [PATCH] Protect a test argument for including spaces. --- src/configure | 2 +- src/configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configure b/src/configure index 0dab5c0d0b..caf8cd1aac 100755 --- a/src/configure +++ b/src/configure @@ -13352,7 +13352,7 @@ fi # ONLY _COSMETICAL_ OUTPUT STUFF BELOW THIS LINE ######################################################## -if test x$CL_LIBS = x; then +if test "x$CL_LIBS" = x; then using_cl=no else using_cl=yes diff --git a/src/configure.ac b/src/configure.ac index 291ab03333..e331d5e9f3 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -538,7 +538,7 @@ AC_OUTPUT(,echo "timestamp from configure.in" > autoconfig-stamp-h) # ONLY _COSMETICAL_ OUTPUT STUFF BELOW THIS LINE ######################################################## -if test x$CL_LIBS = x; then +if test "x$CL_LIBS" = x; then using_cl=no else using_cl=yes