Commit 78811623 authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12475 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 83e5eadf
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment