From 6fce759141bca41a4074d34659e370d874c3124e Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 17 Mar 2008 09:43:32 +0000 Subject: [PATCH] Fix previously broken x86_64 check, simplifying it in the process. Originally committed as revision 12475 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index fccb1b0..8c241cf 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 -- 2.7.4