[FFmpeg-cvslog] r12475 - trunk/configure

diego subversion
Mon Mar 17 10:43:33 CET 2008


Author: diego
Date: Mon Mar 17 10:43:32 2008
New Revision: 12475

Log:
Fix previously broken x86_64 check, simplifying it in the process.


Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Mon Mar 17 10:43:32 2008
@@ -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




More information about the ffmpeg-cvslog mailing list