sort the list of plugins that are built and don't spit out so much empty lines
authorBenjamin Otte <otte@gnome.org>
Thu, 25 Sep 2003 21:40:35 +0000 (21:40 +0000)
committerBenjamin Otte <otte@gnome.org>
Thu, 25 Sep 2003 21:40:35 +0000 (21:40 +0000)
Original commit message from CVS:
sort the list of plugins that are built and don't spit out so much empty lines

common
configure.ac

diff --git a/common b/common
index b4a839c99c0bf2d4903824426ef3cc0d4b0ad992..b7abb510aa14e8692df39ea8c2c758e37d8a8d8a 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit b4a839c99c0bf2d4903824426ef3cc0d4b0ad992
+Subproject commit b7abb510aa14e8692df39ea8c2c758e37d8a8d8a
index 18c0ad4164d017301850a22b31237d96f21347df..d8bc14718497fe7537a436835df3685ef7d72434 100644 (file)
@@ -1313,9 +1313,11 @@ pkgconfig/Makefile
 )
 AC_OUTPUT
 
-echo -e "configure: *** Plug-ins that will be built : $GST_PLUGINS_YES"
+echo -n "configure: *** Plug-ins that will be built :"
+echo -e "$GST_PLUGINS_YES" | sort
 echo
-echo -e "configure: *** Plug-ins that will not be built : $GST_PLUGINS_NO"
+echo -n "configure: *** Plug-ins that will not be built :"
+echo -e "$GST_PLUGINS_NO" | sort
 echo
 if test "x$BUILD_EXTERNAL" = "xno"; then
   echo "configure: *** No external plug-ins will be built"