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 | b7abb510aa14e8692df39ea8c2c758e37d8a8d8a (patch) | |
tree | 7eae7307e162f6a15e04ee383ec876c4f47cdcc2 | |
parent | b4a839c99c0bf2d4903824426ef3cc0d4b0ad992 (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
-rw-r--r-- | m4/gst-feature.m4 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/m4/gst-feature.m4 b/m4/gst-feature.m4 index 6558065..af47b4e 100644 --- a/m4/gst-feature.m4 +++ b/m4/gst-feature.m4 @@ -98,13 +98,17 @@ fi dnl *** Warn if it's disabled or not found if test x$USE_[$1] = xyes; then ifelse([$6], , :, [$6]) - GST_PLUGINS_YES="$GST_PLUGINS_YES \n\t[$3]" + if test "x$3" != "x"; then + GST_PLUGINS_YES="\t[$3]\n$GST_PLUGINS_YES" + fi AC_DEFINE(HAVE_[$1], , [support for features: $3]) else ifelse([$3], , :, [AC_MSG_NOTICE( These plugins will not be built: [$3] )]) - GST_PLUGINS_NO="$GST_PLUGINS_NO \n\t[$3]" + if test "x$3" != "x"; then + GST_PLUGINS_NO="\t[$3]\n$GST_PLUGINS_NO" + fi ifelse([$7], , :, [$7]) fi dnl *** Define the conditional as appropriate |