aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2006-10-15 00:49:36 +0000
committerMax Horn2006-10-15 00:49:36 +0000
commit9def30e30203da4f039d1bc3320983482c54940a (patch)
tree1a8a15ebf8d712895e44ae076702699af604f641
parent8bc0b11cda89d1b4f44043c2620230193b0c4b5a (diff)
downloadscummvm-rg350-9def30e30203da4f039d1bc3320983482c54940a.tar.gz
scummvm-rg350-9def30e30203da4f039d1bc3320983482c54940a.tar.bz2
scummvm-rg350-9def30e30203da4f039d1bc3320983482c54940a.zip
Patch #1574436: Cosmetic changes to configure
svn-id: r24318
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 08cf38509c..7145aa9eb5 100755
--- a/configure
+++ b/configure
@@ -156,9 +156,9 @@ EOF
if test -n "$_host"; then
# In cross-compiling mode, we cannot run the result
- eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
+ eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp" 2> /dev/null && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
else
- eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp 2> /dev/null" && eval "./tmp_cxx_compiler 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
+ eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp" 2> /dev/null && eval "./tmp_cxx_compiler 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
fi
}
@@ -587,7 +587,7 @@ for compiler in $compilers; do
break
fi
done
-if test -z $CXX; then
+if test -z "$CXX"; then
echo "none found!"
exit 1
fi