From f89bcad18958d8350af66d87b5fba207dc315c12 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Wed, 3 Mar 2004 12:10:51 +0000 Subject: fix --with-plugins Original commit message from CVS: fix --with-plugins --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1281839c7..3e9ed79d0 100644 --- a/configure.ac +++ b/configure.ac @@ -263,7 +263,8 @@ GST_PLUGINS_SELECTED="" AC_ARG_WITH(plugins, AC_HELP_STRING([--with-plugins],[comma-separated list of plug-ins to compile]), [for i in `echo $withval | tr , ' '`; do - if test -n `echo $i | grep $GST_PLUGINS_ALL`; then + if echo $GST_PLUGINS_ALL | grep $i > /dev/null + then GST_PLUGINS_SELECTED="$GST_PLUGINS_SELECTED $i" else echo "plug-in $i not recognized, ignoring..." -- cgit v1.2.1