diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | Rpmdrake/pkg.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ +- fix crashing on uninstalling packages (#47751) - prevent crashing in URPM when using --env with relative paths - edit-urpm-sources: o do not use the same shortcut for "Add a specific "media mirror" diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index 217c1f2e..edef6254 100644 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -723,7 +723,7 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-( }; my $exit_code = - urpm::main_loop::run($urpm, $state, 1, undef, $requested, + urpm::main_loop::run($urpm, $state, 1, [ ], $requested, { completed => sub { # explicitly destroy the progress window when it's over; we may |