diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-08-21 19:02:50 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-08-21 19:02:50 +0000 |
commit | 32255f6c2a38ecf6cae0b7902815e24c8f1024dd (patch) | |
tree | 17718fa97d27618809cc0968d3c83fd0753323da /configure | |
parent | afbbe5e34f17a1efea93558b55de6d47187a8fb0 (diff) | |
download | ffmpeg-32255f6c2a38ecf6cae0b7902815e24c8f1024dd.tar.gz |
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
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -353,7 +353,7 @@ case "$cpu" in ;; x86_64|amd64) 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 [ -z "`echo $CFLAGS | grep -- -m32`" ]; then cpu="x86_64" |