diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2004-02-26 12:24:34 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2004-02-26 12:24:34 +0000 |
commit | 6a5b19a71227632a54a4d6620c51973f8c1dc9af (patch) | |
tree | 37e3b505528ceacb255b3998ed24e729bff15494 | |
parent | 58867c38aa43c06e2eca9a9559f6566ba3e9801f (diff) | |
download | rpmdrake-6a5b19a71227632a54a4d6620c51973f8c1dc9af.tar rpmdrake-6a5b19a71227632a54a4d6620c51973f8c1dc9af.tar.gz rpmdrake-6a5b19a71227632a54a4d6620c51973f8c1dc9af.tar.bz2 rpmdrake-6a5b19a71227632a54a4d6620c51973f8c1dc9af.tar.xz rpmdrake-6a5b19a71227632a54a4d6620c51973f8c1dc9af.zip |
fix behaviour after something has been installed in --pkg-sel mode
-rwxr-xr-x | rpmdrake | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1026,6 +1026,10 @@ Then, restart MandrakeUpdate.")), myexit(-1); } $installable_pkgs{my_fullname($pkg)} = { selected => $selected, pkg => $pkg }; } + if ($options{'pkg-sel'} || $options{'pkg-nosel'}) { + push @{$options{'pkg-nosel'}}, @{$options{'pkg-sel'}}; + delete $options{'pkg-sel'}; + } remove_wait_msg($wait); ($urpm, \%installable_pkgs, \%update_descr); |