summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2003-09-25 21:40:35 +0000
committerBenjamin Otte <otte@gnome.org>2003-09-25 21:40:35 +0000
commit46860a7c533203cc3db68afff2936f039833cfde (patch)
tree424414c039d22ead093c9ce0b53cba01ec875d28 /configure.ac
parentc60fd3f74bf9ae8a17f9ca968930e8932f2ca147 (diff)
sort the list of plugins that are built and don't spit out so much empty lines
Original commit message from CVS: sort the list of plugins that are built and don't spit out so much empty lines
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 18c0ad41..d8bc1471 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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"