Skip to content

Commit

Permalink
Protect a test argument for including spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
magnumripper committed May 18, 2014
1 parent af08a8e commit c449787
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/configure
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c449787

Please sign in to comment.