diff options
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/pkgs.pm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 86051ddc7..00d0ca094 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- harddrake: + o do not offer to install java plugin (#48520) + Version 12.28.2 - 19 April 2009 - harddrake: 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 { |