diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-18 21:32:57 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-18 21:32:57 +0000 |
commit | 5d54c12611ec11a02f49574013d83ce148b39347 (patch) | |
tree | fbfc4de2ec687ac46cf35b6c1458fc3b9294121d | |
parent | bffe82f504622c56a41918b5a5e06cf0826d6953 (diff) | |
download | ffmpeg-5d54c12611ec11a02f49574013d83ce148b39347.tar.gz |
configure: fix cpu=generic case
Originally committed as revision 21300 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -1815,7 +1815,9 @@ is_in $arch $ARCH_LIST || echo "WARNING: unknown arch $arch" enable $arch # Add processor-specific flags -if enabled ppc; then +if test "$cpu" = generic; then + : do nothing +elif enabled ppc; then case $cpu in 601|ppc601|PowerPC601) @@ -1923,12 +1925,6 @@ elif enabled avr32; then ;; esac -else - - if test "$cpu" != generic; then - echo "WARNING: Unknown CPU \"$cpu\", ignored." - fi - fi add_cflags $cpuflags |