]> git.sesse.net Git - vlc/blobdiff - vlc-config.in.in
Less and less information with compile
[vlc] / vlc-config.in.in
index 5245222c506ec710d43ea6cb3cf5ce0ded52401c..b4305b510c500f8fc826872b009252f6b6a71373 100644 (file)
@@ -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