Commit 5d54c126 authored by Måns Rullgård's avatar Måns Rullgård

configure: fix cpu=generic case

Originally committed as revision 21300 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent bffe82f5
...@@ -1815,7 +1815,9 @@ is_in $arch $ARCH_LIST || echo "WARNING: unknown arch $arch" ...@@ -1815,7 +1815,9 @@ is_in $arch $ARCH_LIST || echo "WARNING: unknown arch $arch"
enable $arch enable $arch
# Add processor-specific flags # Add processor-specific flags
if enabled ppc; then if test "$cpu" = generic; then
: do nothing
elif enabled ppc; then
case $cpu in case $cpu in
601|ppc601|PowerPC601) 601|ppc601|PowerPC601)
...@@ -1923,12 +1925,6 @@ elif enabled avr32; then ...@@ -1923,12 +1925,6 @@ elif enabled avr32; then
;; ;;
esac esac
else
if test "$cpu" != generic; then
echo "WARNING: Unknown CPU \"$cpu\", ignored."
fi
fi fi
add_cflags $cpuflags add_cflags $cpuflags
......
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