Browse code

Move printing of the license status at the end of configure output, so that users won't miss it

Originally committed as revision 11450 to svn://svn.ffmpeg.org/ffmpeg/trunk

Roberto Togni authored on 2008/01/08 06:37:18
Showing 1 changed files
... ...
@@ -1907,9 +1907,6 @@ echo "libvorbis enabled         ${libvorbis-no}"
1907 1907
 echo "x264 enabled              ${libx264-no}"
1908 1908
 echo "XviD enabled              ${libxvid-no}"
1909 1909
 echo "zlib enabled              ${zlib-no}"
1910
-enabled gpl &&
1911
-    echo "License: GPL" ||
1912
-    echo "License: LGPL"
1913 1910
 
1914 1911
 for type in decoder encoder parser demuxer muxer protocol bsf indev outdev; do
1915 1912
     echo "Enabled ${type}s:"
... ...
@@ -1925,6 +1922,10 @@ done
1925 1925
 
1926 1926
 echo "Creating config.mak and config.h..."
1927 1927
 
1928
+enabled gpl &&
1929
+    echo "License: GPL" ||
1930
+    echo "License: LGPL"
1931
+
1928 1932
 echo "# Automatically generated by configure - do not modify!" > config.mak
1929 1933
 echo "/* Automatically generated by configure - do not modify! */" > $TMPH
1930 1934
 echo "#ifndef FFMPEG_CONFIG_H" >> $TMPH