Commit 32255f6c authored by Reimar Döffinger's avatar Reimar Döffinger

cc -> $cc typo fix, caused amd64 to be misdetected as x86 when cc not available

Originally committed as revision 6044 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent afbbe5e3
...@@ -353,7 +353,7 @@ case "$cpu" in ...@@ -353,7 +353,7 @@ case "$cpu" in
;; ;;
x86_64|amd64) x86_64|amd64)
cpu="x86" cpu="x86"
canon_arch="`cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`" canon_arch="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then
if [ -z "`echo $CFLAGS | grep -- -m32`" ]; then if [ -z "`echo $CFLAGS | grep -- -m32`" ]; then
cpu="x86_64" cpu="x86_64"
......
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