diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-12-24 02:14:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-12-24 02:14:26 +0000 |
commit | b8bd34305e5313a9fb9e791fe97ffccebe414a81 (patch) | |
tree | b60b544da7a95ea43153165000cc67c0c54e7c66 | |
parent | eb1138049908806745256d3e409cd071ce4f2102 (diff) | |
download | ffmpeg-b8bd34305e5313a9fb9e791fe97ffccebe414a81.tar.gz |
Slightly shorten libvorbis check.
Originally committed as revision 7371 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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 |