aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-05-23 13:05:51 +0000
committerThierry Vignaud <tv@mandriva.org>2008-05-23 13:05:51 +0000
commit1a7b6c8dbd889b962d561f827fd1918c502f341a (patch)
treeaa25ec8c252e58e6672befbe47986b55293136bc
parent1ebaf16d934c43070c71504261973b22fec7b23d (diff)
downloadrpmdrake-1a7b6c8dbd889b962d561f827fd1918c502f341a.tar
rpmdrake-1a7b6c8dbd889b962d561f827fd1918c502f341a.tar.gz
rpmdrake-1a7b6c8dbd889b962d561f827fd1918c502f341a.tar.bz2
rpmdrake-1a7b6c8dbd889b962d561f827fd1918c502f341a.tar.xz
rpmdrake-1a7b6c8dbd889b962d561f827fd1918c502f341a.zip
list basesystem-* as meta-task too
-rw-r--r--NEWS2
-rw-r--r--Rpmdrake/pkg.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 3ee6ba6a..f20aedd1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- rpmdrake:
+ o list basesystem-* as meta-task too
- MandrivaUpdate:
o laptop mode (height not bigger than 480):
* do not display banner
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm
index 32c158a9..89f1d827 100644
--- a/Rpmdrake/pkg.pm
+++ b/Rpmdrake/pkg.pm
@@ -531,7 +531,7 @@ sub get_pkgs {
installed => \@installed_pkgs,
installable => \@installable_pkgs,
updates => \@updates,
- meta_pkgs => [ grep { /^task-/ } keys %all_pkgs ],
+ meta_pkgs => [ grep { /^task-|^basesystem/ } keys %all_pkgs ],
gui_pkgs => [ grep { member(($all_pkgs{$_}{pkg}->fullname)[0], @gui_pkgs) } keys %all_pkgs ],
update_descr => $update_descr,
backports => \@backports,