summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xurpmi2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 0b366ae1..1a82928b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- urpmi
+ o do not compute orphan packages when handling priority upgrades
+
Version 6.42 - 05 November 2011
- urpmi.addmedia:
diff --git a/urpmi b/urpmi
index 2e998506..f6c63274 100755
--- a/urpmi
+++ b/urpmi
@@ -694,7 +694,7 @@ my $exit_code = urpm::main_loop::run($urpm, $state,
}
});
-if ($exit_code == 0 && $auto_select && !$options{auto_orphans}) {
+if ($exit_code == 0 && $auto_select && !$options{auto_orphans} && !$restart_itself) {
if (urpm::orphans::check_unrequested_orphans_after_auto_select($urpm)) {
if (my $msg = urpm::orphans::get_now_orphans_msg($urpm)) {
print "\n", $msg;