aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreriktorbjorn2011-06-18 08:26:55 +0200
committereriktorbjorn2011-06-18 08:26:55 +0200
commit36d720d06b0ed5f736ca08230c5f37459395a83e (patch)
treee7b8bc559eaf6cebadc700dba9b94d7cf17b9ddf
parentb81207a04ecb5057b2b6efa0f3a6288b6e969aef (diff)
downloadscummvm-rg350-36d720d06b0ed5f736ca08230c5f37459395a83e.tar.gz
scummvm-rg350-36d720d06b0ed5f736ca08230c5f37459395a83e.tar.bz2
scummvm-rg350-36d720d06b0ed5f736ca08230c5f37459395a83e.zip
CONFIGURE: Use = to test for string equality, not ==
I think this is correct. It's consistent with how it's done in other places in the configure script, and it silences a bunch of "unexpected operator" warnings for me.
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 8b7feba443..0afdbfe7c8 100755
--- a/configure
+++ b/configure
@@ -65,7 +65,7 @@ get_var() {
# Add an engine: id name build subengines
add_engine() {
_engines="${_engines} ${1}"
- if test "${3}" == "no" ; then
+ if test "${3}" = "no" ; then
set_var _wip_engines "${_wip_engines} ${1}"
fi
set_var _engine_${1}_name "${2}"