diff options
Diffstat (limited to 'Rpmdrake/pkg.pm')
-rw-r--r-- | Rpmdrake/pkg.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index 7d414470..f9620792 100644 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -440,7 +440,7 @@ sub get_pkgs { } } - if ($probe_only_for_updates && $need_restart) { + if ($need_restart) { @requested_strict = map { scalar $_->fullname } @{$urpm->{depslist}}[keys %{$state->{selected}}]; # drop non priority updates: undef @requested; @@ -448,7 +448,7 @@ sub get_pkgs { # list updates including skiped ones + their deps in MandrivaUpdate: - @requested = uniq(@requested, @requested_strict) if $probe_only_for_updates; + @requested = uniq(@requested, @requested_strict); $priority_state = $need_restart ? $state : undef; $priority_requested = $need_restart ? $requested : undef; |