diff options
author | Måns Rullgård <mans@mansr.com> | 2007-08-27 14:19:04 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-08-27 14:19:04 +0000 |
commit | e89d9fd89cd81099c9b6bd99b2209a7d5f966d67 (patch) | |
tree | a5a8c4dd85cc8e1b7fee694927ce9baf4fe239df /configure | |
parent | 30a987ece90d2aaa82f448f62cea120822eeabea (diff) | |
download | ffmpeg-e89d9fd89cd81099c9b6bd99b2209a7d5f966d67.tar.gz |
do not use "strings" in endian check
Originally committed as revision 10252 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |