From 4208e9167c9818b42aa1b6b88e8d70d9530f9d13 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 2 Mar 2004 18:32:27 +0000 Subject: fix --with-plugins Original commit message from CVS: fix --with-plugins --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 553f8f99..812e42fd 100644 --- a/configure.ac +++ b/configure.ac @@ -411,7 +411,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