Skip to content
Snippets Groups Projects
Commit b34c63f7 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Make configure bail out when confronted with unknown options.

Originally committed as revision 4612 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a9e35095
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment