From a654115f1a9a1497ee7d73a3c861e4f37ab1e081 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 26 May 2011 11:03:00 +0200 Subject: BUILD: Make endianess check stricter --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 45b3121614..9073232823 100755 --- a/configure +++ b/configure @@ -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; -- cgit v1.2.3