diff options
author | Benjamin Otte <otte@gnome.org> | 2003-09-25 21:40:35 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2003-09-25 21:40:35 +0000 |
commit | b7067018a6ceb8a47fcf590ca168d50f89bd7d63 (patch) | |
tree | ba5f004fd001e1c30780580d36165abcf34c8dc3 | |
parent | 0142d75bf9f83aea56d6b13b30f27ed8fcbad6b5 (diff) | |
download | gstreamer-plugins-base-b7067018a6ceb8a47fcf590ca168d50f89bd7d63.tar.gz |
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
m--------- | common | 0 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 4 insertions, 2 deletions
diff --git a/common b/common -Subproject b4a839c99c0bf2d4903824426ef3cc0d4b0ad99 +Subproject b7abb510aa14e8692df39ea8c2c758e37d8a8d8 diff --git a/configure.ac b/configure.ac index 18c0ad416..d8bc14718 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" |