diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-09-23 01:08:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-09-23 01:08:48 +0000 |
commit | b34c63f7737464278e2f9a44c4b94b6a521ca6ec (patch) | |
tree | 6c2210f3b0139b25279ae5ad19531128ff092287 /configure | |
parent | a9e350952992f07f4b560385185f406fbbb752d7 (diff) | |
download | ffmpeg-b34c63f7737464278e2f9a44c4b94b6a521ca6ec.tar.gz |
Make configure bail out when confronted with unknown options.
Originally committed as revision 4612 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |