BUILD: Make endianess check stricter

This commit is contained in:
Max Horn 2011-05-26 11:03:00 +02:00
parent de8a44abfc
commit a654115f1a

2
configure vendored
View file

@ -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;