aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2008-05-06 04:47:58 +0000
committerTorbjörn Andersson2008-05-06 04:47:58 +0000
commit397e04d0b1ff6d96502c4eca42c1ab4a31b2dbcd (patch)
tree73a009517dbe1f93f57b1de45f7fa0832702f0eb
parent38f200fc55fc8a05c848feeec52e5c28224311ba (diff)
downloadscummvm-rg350-397e04d0b1ff6d96502c4eca42c1ab4a31b2dbcd.tar.gz
scummvm-rg350-397e04d0b1ff6d96502c4eca42c1ab4a31b2dbcd.tar.bz2
scummvm-rg350-397e04d0b1ff6d96502c4eca42c1ab4a31b2dbcd.zip
Fixed syntax error. String comparision is done with '=', not '=='.
svn-id: r31891
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 29d8aed8c8..d71501098a 100755
--- a/configure
+++ b/configure
@@ -373,7 +373,7 @@ engine_enable() {
opt=yes
fi
engine=`echo $eng | sed 's/-/_/g'`
- if test "$opt" == "static" -o "$opt" == "dynamic" -o "$opt" == "yes" ; then
+ if test "$opt" = "static" -o "$opt" = "dynamic" -o "$opt" = "yes" ; then
if test "`get_engine_build ${engine}`" != "$opt" ; then
eval _engine_${engine}_build=$opt
else