diff options
author | Max Horn | 2011-05-26 11:03:00 +0200 |
---|---|---|
committer | Max Horn | 2011-05-26 11:06:33 +0200 |
commit | a654115f1a9a1497ee7d73a3c861e4f37ab1e081 (patch) | |
tree | 4918621b90816bd17b005bfdf1d93b792232f85f /configure | |
parent | de8a44abfc221a4a173cbc1bab87f596379ab14c (diff) | |
download | scummvm-rg350-a654115f1a9a1497ee7d73a3c861e4f37ab1e081.tar.gz scummvm-rg350-a654115f1a9a1497ee7d73a3c861e4f37ab1e081.tar.bz2 scummvm-rg350-a654115f1a9a1497ee7d73a3c861e4f37ab1e081.zip |
BUILD: Make endianess check stricter
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1467,7 +1467,7 @@ EOF $CXX $CXXFLAGS -c -o $TMPO.o tmp_endianness_check.cpp if strings $TMPO.o | grep BIGenDianSyS >/dev/null; then _endian=big -else +elif strings $TMPO.o | grep LiTTleEnDian >/dev/null; then _endian=little fi echo $_endian; |