diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2008-05-14 18:21:56 +0000 |
---|---|---|
committer | Peter Kjellerstedt <pkj@axis.com> | 2008-05-14 18:21:56 +0000 |
commit | 0823ac6b46b7332109bbc5f1ef40e24e648fae51 (patch) | |
tree | 16e15469e018ac8efc50895e4ed213866b28c6ad /m4/gst-feature.m4 | |
parent | d78efae300d4dff0291717ccf7a2b82c713a81ef (diff) |
m4/gst-feature.m4: Report plug-ins without external dependencies that will not be built even when the name of the plu...
Original commit message from CVS:
* m4/gst-feature.m4:
Report plug-ins without external dependencies that will not be built
even when the name of the plug-in is a substring of another plug-in,
e.g., goom vs. goom2k1.
Diffstat (limited to 'm4/gst-feature.m4')
-rw-r--r-- | m4/gst-feature.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/gst-feature.m4 b/m4/gst-feature.m4 index 6777029..3aa3f4b 100644 --- a/m4/gst-feature.m4 +++ b/m4/gst-feature.m4 @@ -262,8 +262,8 @@ printf "\n" printf "configure: *** Plug-ins without external dependencies that will NOT be built:\n" ( for i in $GST_PLUGINS_ALL; do - case $GST_PLUGINS_SELECTED in - *$i*) + case " $GST_PLUGINS_SELECTED " in + *\ $i\ *) ;; *) printf '\t'$i'\n' |