diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-10-17 18:34:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-10-17 18:34:49 +0000 |
commit | acdc26142db3112becc42fe2e5c67147ed8a9fa7 (patch) | |
tree | eb30f32b12e11786e3a8c6d94db4dc92b42344d3 /perl-install/any.pm | |
parent | 369fb96d664c7f80217611e52458cdfffc89af72 (diff) | |
download | drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.tar drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.tar.gz drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.tar.bz2 drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.tar.xz drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.zip |
make new perl_checker happy: replacing PKG::f by PKG::f()
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index e25d047d9..de2f7ac93 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -173,7 +173,7 @@ sub setupBootloader { ), { label => _("Clean /tmp at each boot"), val => \$clean_tmp, type => 'bool', advanced => 1 }, { label => _("Precise RAM size if needed (found %d MB)", availableRamMB()), val => \$memsize, advanced => 1 }, - if_(detect_devices::isLaptop, + if_(detect_devices::isLaptop(), { label => _("Enable multi profiles"), val => \$profiles, type => 'bool', advanced => 1 }, ), ], |