diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-02 18:32:27 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-02 18:32:27 +0000 |
commit | 4208e9167c9818b42aa1b6b88e8d70d9530f9d13 (patch) | |
tree | f379277605288efc091154b63d3c89463a96658a /configure.ac | |
parent | 4cb4cfa63689095e80398323240ebf80ebb0e347 (diff) |
fix --with-plugins
Original commit message from CVS:
fix --with-plugins
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
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..." |