diff options
author | Francois Pons <fpons@mandriva.com> | 2003-03-06 13:55:42 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-03-06 13:55:42 +0000 |
commit | 99f1fca0089e24cc05393119fc406d210e932205 (patch) | |
tree | 1984135f1352762d436fd5e3e2f893edd8d00645 /perl-install | |
parent | ef47a1b619766acf9635fc6d40ef7c658903dd07 (diff) | |
download | drakx-99f1fca0089e24cc05393119fc406d210e932205.tar drakx-99f1fca0089e24cc05393119fc406d210e932205.tar.gz drakx-99f1fca0089e24cc05393119fc406d210e932205.tar.bz2 drakx-99f1fca0089e24cc05393119fc406d210e932205.tar.xz drakx-99f1fca0089e24cc05393119fc406d210e932205.zip |
modified logic for summaryAfter.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index d034d729f..ef38351f8 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -698,8 +698,8 @@ sub summaryAfter { my ($o) = @_; require bootloader; - bootloader::get_append($o->{bootloader}, 'acpi') ne 'off' && (-x "$::prefix/usr/bin/acpi" && -x "$::prefix/usr/sbin/acpid") and - $o->do_pkgs->pkg_install(qw(acpi acpid)); + bootloader::get_append($o->{bootloader}, 'acpi') ne 'off' && !(-x "$::prefix/usr/bin/acpi" && -x "$::prefix/usr/sbin/acpid") + and $o->do_pkgs->pkg_install(qw(acpi acpid)); } #------------------------------------------------------------------------------ |