diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-04-20 10:00:00 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-04-20 10:00:00 +0000 |
commit | d50698605117bd3553ba74b676f0d8a57ccc6cbb (patch) | |
tree | c3a840f5407efb19ee05abf3cf28bf09d75e30f3 /perl-install/pkgs.pm | |
parent | 8b9fcacb5593791c0c965532775ca1a07a1e234e (diff) | |
download | drakx-d50698605117bd3553ba74b676f0d8a57ccc6cbb.tar drakx-d50698605117bd3553ba74b676f0d8a57ccc6cbb.tar.gz drakx-d50698605117bd3553ba74b676f0d8a57ccc6cbb.tar.bz2 drakx-d50698605117bd3553ba74b676f0d8a57ccc6cbb.tar.xz drakx-d50698605117bd3553ba74b676f0d8a57ccc6cbb.zip |
(detect_rpmsrate_hardware_packages) do not offer to install java plugin (#48520)
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index d028d32e5..526a91b41 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -167,7 +167,7 @@ sub simple_read_rpmsrate { sub detect_rpmsrate_hardware_packages { my ($o_match_all_hardware, $ignore_flags) = @_; - grep { !/openoffice/ } simple_read_rpmsrate($o_match_all_hardware, $ignore_flags); + grep { !/openoffice|java/ } simple_read_rpmsrate($o_match_all_hardware, $ignore_flags); } sub detect_graphical_drivers { |