Commit b8bd3430 authored by Diego Biurrun's avatar Diego Biurrun

Slightly shorten libvorbis check.

Originally committed as revision 7371 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent eb113804
......@@ -1117,11 +1117,9 @@ EOF
exit 1;
fi
if test "$libvorbis" = "yes" ; then
if test "$libogg" = "no"; then
echo "libogg must be enabled to enable Vorbis."
fail="yes"
fi
if test "$libvorbis" = "yes" && test "$libogg" = "no"; then
echo "libogg must be enabled to enable libvorbis."
fail="yes"
fi
if test "$gpl" != "yes"; then
......
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