From 46860a7c533203cc3db68afff2936f039833cfde Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Thu, 25 Sep 2003 21:40:35 +0000 Subject: 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 --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'configure.ac') 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" -- cgit