Commit 3986851f authored by diego's avatar diego

Make configure bail out when confronted with unknown options.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4612 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 78948f97
......@@ -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
......
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