do not use "strings" in endian check

Originally committed as revision 10252 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2007-08-27 14:19:04 +00:00
parent 30a987ece9
commit e89d9fd89c
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -1508,7 +1508,7 @@ EOF
check_cc <<EOF || die "endian test failed"
unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
EOF
strings -a $TMPO | grep -q BIGE && enable bigendian
grep -q BIGE $TMPO && enable bigendian
# ---
# check availability of some header files