summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2008-03-03 22:01:15 +0000
committerMåns Rullgård <mans@mansr.com>2008-03-03 22:01:15 +0000
commit22f8654776e34d3effb75beae5e8d33f36adc3c6 (patch)
tree17136a8b2a5265bc2cb746343cdf4441bf01a870 /configure
parent0e9fbd35b5544e7799db67302d3d7e2ea761b4c4 (diff)
Fix endian test with grep not handling non-text files
POSIX grep is not required to support non-text files. Idea by Rich Felker. Originally committed as revision 12304 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index f283e9652a..b352513917 100755
--- a/configure
+++ b/configure
@@ -1580,7 +1580,7 @@ enabled vis && add_cflags "-mcpu=ultrasparc -mtune=ultrasparc"
check_cc <<EOF || die "endian test failed"
unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
EOF
-grep -q BIGE $TMPO && enable bigendian
+tr -c -d BIGE < $TMPO | grep -q BIGE && enable bigendian
# ---
# check availability of some header files