]> git.sesse.net Git - vlc/blobdiff - vlc-config.in.in
remove bogus code introduced in the previous commit
[vlc] / vlc-config.in.in
index 73f97bb648000859255f024caef52eeba7190d9e..b4305b510c500f8fc826872b009252f6b6a71373 100644 (file)
@@ -151,8 +151,9 @@ 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)
+    lib*_plugin_la-*.lo)
       tgt="${tgt#*lib}"
       tgt="${tgt%_plugin_la-*.lo}"
       ;;
@@ -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