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 | df32a5960fda190e7bc95c1c648fae8d55b734cb (patch) | |
tree | 4ebe476a588642e2057fcb76203fb68d8a58e971 /configure.ac | |
parent | ccc0a0609b90a8e8f712c2799f37c0aff3601498 (diff) | |
download | gst-plugins-bad-df32a5960fda190e7bc95c1c648fae8d55b734cb.tar.gz gst-plugins-bad-df32a5960fda190e7bc95c1c648fae8d55b734cb.tar.bz2 gst-plugins-bad-df32a5960fda190e7bc95c1c648fae8d55b734cb.zip |
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..." |