diff options
author | Ramiro Polla <ramiro@lisha.ufsc.br> | 2006-08-31 19:02:10 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-31 19:02:10 +0000 |
commit | ebb810d9f7dea574e5f2f1f96b6b00b9506b4bc0 (patch) | |
tree | 870b17105f10ed6cb89b62738867ca8e1d56f2cf /configure | |
parent | 91beada72a26e9e37308961397fd652f2df5b9c4 (diff) | |
download | ffmpeg-ebb810d9f7dea574e5f2f1f96b6b00b9506b4bc0.tar.gz |
The fail test needs to be outside of the GPL test, it's referenced elsewhere.
patch by Ramiro Polla, angustia (at) arrozcru (dot) no-ip (dot) org
Originally committed as revision 6145 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -985,10 +985,10 @@ EOF echo "The software scaler is under GPL and --enable-gpl is not specified." fail="yes" fi +fi - if test "$fail" = "yes"; then - exit 1 - fi +if test "$fail" = "yes"; then + exit 1 fi # compute MMX state |