Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-08-27 18:19:04 +0400
committerMåns Rullgård <mans@mansr.com>2007-08-27 18:19:04 +0400
commite89d9fd89cd81099c9b6bd99b2209a7d5f966d67 (patch)
treea5a8c4dd85cc8e1b7fee694927ce9baf4fe239df /configure
parent30a987ece90d2aaa82f448f62cea120822eeabea (diff)
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-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index edd18762e5..3b82e370b3 100755
--- a/configure
+++ b/configure
@@ -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