Commit b34c63f7 authored by Diego Biurrun's avatar Diego Biurrun

Make configure bail out when confronted with unknown options.

Originally committed as revision 4612 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a9e35095
...@@ -541,6 +541,11 @@ for opt do ...@@ -541,6 +541,11 @@ for opt do
;; ;;
--disable-demuxers) demuxers="no" --disable-demuxers) demuxers="no"
;; ;;
*)
echo "Unknown option \"$opt\"."
echo "See $0 --help for available options."
exit 1
;;
esac esac
done done
......
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