From: RĂ©mi Denis-Courmont Date: Sun, 27 Apr 2008 19:02:37 +0000 (+0300) Subject: vlc-config: no need to go through all plugins to get the linkage X-Git-Tag: 0.9.0-test0~1316 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=1be45fb5f915358d51d81ac43d974a8c71e7b164;hp=074ed6708644323bd441332fb7d34b99bd954350;p=vlc vlc-config: no need to go through all plugins to get the linkage --- diff --git a/vlc-config.in.in b/vlc-config.in.in index 63c3f66005..b4305b510c 100644 --- a/vlc-config.in.in +++ b/vlc-config.in.in @@ -254,16 +254,6 @@ fi # Output what we were asked # if test "${echo_linkage}" = yes; then - if test "${echo_plugin}" = yes; then - for module in `echo "${plugins}"`; do - register_flags "${module}" - done - fi - if test "${echo_builtin}" = yes; then - for module in `echo "${builtins}"`; do - register_flags "${module}" - done - fi echo "${linkage}" exit 0 fi