summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-17 09:43:32 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-17 09:43:32 +0000
commit6fce759141bca41a4074d34659e370d874c3124e (patch)
treebe17da4c8f23d84f9b59103382a1a9367e304937 /configure
parent3dddba4b5dfc45fc0da0812981c8c3d96607fbba (diff)
Fix previously broken x86_64 check, simplifying it in the process.
Originally committed as revision 12475 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 fccb1b007e..8c241cfcf1 100755
--- a/configure
+++ b/configure
@@ -1085,7 +1085,7 @@ case "$arch" in
enable fast_unaligned
canon_arch="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then
- if [ -z "`echo $CFLAGS | grep -q -- -m32`" ]; then
+ if ! echo $CFLAGS | grep -q -- -m32; then
arch="x86_64"
enable fast_64bit
fi