Actually fix --uninstall for command line modules.

wilder
Michael Pyne 15 years ago
parent fb82227f51
commit c0b039320f
  1. 6
      kdesrc-build

@ -7816,6 +7816,12 @@ eval
# More compat hacks.
@uninstallList = map { $_->{name} } @uninstallList;
# Make handle_uninstall handle in right order (it reverses the order
# so that the first module uninstalled is the last one installed).
if (Module::moduleSource() eq 'cmdline') {
@uninstallList = reverse @uninstallList;
}
$result = handle_uninstall (@uninstallList);
}

Loading…
Cancel
Save