aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD G Turner2014-05-18 00:30:12 +0100
committerD G Turner2014-05-18 00:30:12 +0100
commite89b0fd4393be93e79095f87d6ce3a1ca2c8d849 (patch)
tree4af9007431c684320a98f8369f63ea6f24d96eba
parent54c957913a0345709b04c2d78c73238ddfb7d1f1 (diff)
downloadscummvm-rg350-e89b0fd4393be93e79095f87d6ce3a1ca2c8d849.tar.gz
scummvm-rg350-e89b0fd4393be93e79095f87d6ce3a1ca2c8d849.tar.bz2
scummvm-rg350-e89b0fd4393be93e79095f87d6ce3a1ca2c8d849.zip
CONFIGURE: Add support for host-alias prefixed strings binary on LE.
This was missed from the Wii patch as the Wii is Big Endian.
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 122b1ed3c1..411403408b 100755
--- a/configure
+++ b/configure
@@ -1865,7 +1865,7 @@ EOF
$CXX $CXXFLAGS -c -o $TMPO.o tmp_endianness_check.cpp
if $_strings $TMPO.o | grep BIGenDianSyS >/dev/null; then
_endian=big
-elif strings $TMPO.o | grep LiTTleEnDian >/dev/null; then
+elif $_strings $TMPO.o | grep LiTTleEnDian >/dev/null; then
_endian=little
fi
echo $_endian;