Commit e89d9fd8 authored by Måns Rullgård's avatar Måns Rullgård

do not use "strings" in endian check

Originally committed as revision 10252 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 30a987ec
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment