aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD G Turner2014-07-01 23:41:02 +0100
committerD G Turner2014-07-01 23:41:02 +0100
commit150ac10a1e233540e56d272bfd6f21492c7b2a4e (patch)
tree8a206c3aee697c7a3dda729d974e65a5a260e27e
parent0adb9e7d9b5b0045d16c38c750b9253f980d0258 (diff)
downloadscummvm-rg350-150ac10a1e233540e56d272bfd6f21492c7b2a4e.tar.gz
scummvm-rg350-150ac10a1e233540e56d272bfd6f21492c7b2a4e.tar.bz2
scummvm-rg350-150ac10a1e233540e56d272bfd6f21492c7b2a4e.zip
CONFIGURE: Fix compilation on IRIX.
Fixes bug #6666 "IRIX: configure mistakenly detects $_host_alias-strings".
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 3d37473c33..06359079e1 100755
--- a/configure
+++ b/configure
@@ -1844,7 +1844,7 @@ fi
echo $_global_constructors
echo_n "Checking for $_host_alias-strings... " >> "$TMPLOG"
-if test ! "x$(which $_host_alias-strings 2>/dev/null)" = "x"; then
+if `which $_host_alias-strings >/dev/null 2>&1`; then
_strings=$_host_alias-strings
echo yes >> "$TMPLOG"
else