diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-19 13:40:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-19 13:40:59 +0000 |
commit | b72a0266385128c33334eabe173633fce9e1f362 (patch) | |
tree | 925862d2193ec4a1daa52c6854063e7500e20e0a /perl-install/pkgs.pm | |
parent | 3c451111c10daade8ebb2720304fa02225a9a33f (diff) | |
download | drakx-b72a0266385128c33334eabe173633fce9e1f362.tar drakx-b72a0266385128c33334eabe173633fce9e1f362.tar.gz drakx-b72a0266385128c33334eabe173633fce9e1f362.tar.bz2 drakx-b72a0266385128c33334eabe173633fce9e1f362.tar.xz drakx-b72a0266385128c33334eabe173633fce9e1f362.zip |
- gmc instead of nautilus for non-latin1 installs
- introduce CHARSET flag and use it
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 9f097156f..2f0aeaaac 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -16,7 +16,7 @@ use c; -my @preferred = qw(perl-GTK postfix proftpd ghostscript-X vim-minimal kernel db1 db2 ispell-en Bastille-Curses-module); +my @preferred = qw(perl-GTK postfix proftpd ghostscript-X vim-minimal kernel db1 db2 ispell-en Bastille-Curses-module nautilus); @preferred{@preferred} = (); #- lower bound on the left ( aka 90 means [90-100[ ) @@ -786,8 +786,8 @@ sub computeGroupSize { map { "$_&&$n" } @l; } split('\|\|'); } - #- HACK, remove LOCALES, too costly - grep { !/LOCALES/ } @l; + #- HACK, remove LOCALES & CHARSET, too costly + grep { !/LOCALES|CHARSET/ } @l; } sub or_clean { my (@l) = map { [ sort split('&&') ] } @_ or return ''; |