Make configure bail out when confronted with unknown options.

Originally committed as revision 4612 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2005-09-23 01:08:48 +00:00
parent a9e3509529
commit b34c63f773
1 changed files with 5 additions and 0 deletions

5
configure vendored
View File

@ -541,6 +541,11 @@ for opt do
;;
--disable-demuxers) demuxers="no"
;;
*)
echo "Unknown option \"$opt\"."
echo "See $0 --help for available options."
exit 1
;;
esac
done