X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=vlc-config.in.in;h=b4305b510c500f8fc826872b009252f6b6a71373;hb=9f3a5f3a463f638e8c760649fdfc34c081857c83;hp=5245222c506ec710d43ea6cb3cf5ce0ded52401c;hpb=66b5536ec1d6b3e85f9d27feda188c4351463c86;p=vlc diff --git a/vlc-config.in.in b/vlc-config.in.in index 5245222c50..b4305b510c 100644 --- a/vlc-config.in.in +++ b/vlc-config.in.in @@ -151,9 +151,10 @@ while test $# -gt 0; do # Mangle plugin name, if applicable # This is just a convenience hack for modules/common.am tgt="$1" + tgt="${tgt##*/}" case "$tgt" in lib*_plugin_la-*.lo) - tgt="${tgt#lib}" + tgt="${tgt#*lib}" tgt="${tgt%_plugin_la-*.lo}" ;; lib*_plugin.la) @@ -253,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