diff options
author | Måns Rullgård <mans@mansr.com> | 2007-08-26 09:11:22 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-08-26 09:11:22 +0000 |
commit | 7e7f5c7bf6ba6019a2e2a3cbb12096d0d4ef5d59 (patch) | |
tree | 12cc4ec8437a4a364998d303770cbe5495e8e3bb | |
parent | 0828e476426682b03c331085d5628b9b1c97b14c (diff) | |
download | ffmpeg-7e7f5c7bf6ba6019a2e2a3cbb12096d0d4ef5d59.tar.gz |
use POSIX "strings -a" rather than "strings -"
Originally committed as revision 10233 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 - $TMPO | grep -q BIGE && enable bigendian +strings -a $TMPO | grep -q BIGE && enable bigendian # --- # check availability of some header files |