[Scummvm-cvs-logs] scummvm master -> 150ac10a1e233540e56d272bfd6f21492c7b2a4e

digitall dgturner at iee.org
Wed Jul 2 00:43:43 CEST 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
150ac10a1e CONFIGURE: Fix compilation on IRIX.


Commit: 150ac10a1e233540e56d272bfd6f21492c7b2a4e
    https://github.com/scummvm/scummvm/commit/150ac10a1e233540e56d272bfd6f21492c7b2a4e
Author: D G Turner (digitall at scummvm.org)
Date: 2014-07-01T23:41:02+01:00

Commit Message:
CONFIGURE: Fix compilation on IRIX.

Fixes bug #6666 "IRIX: configure mistakenly detects
$_host_alias-strings".

Changed paths:
    configure



diff --git a/configure b/configure
index 3d37473..0635907 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






More information about the Scummvm-git-logs mailing list