diff options
author | Francois Pons <fpons@mandriva.com> | 2001-06-13 16:52:23 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-06-13 16:52:23 +0000 |
commit | bdc06e59473edf59c86b7cb83b4687645c4cd24c (patch) | |
tree | dada2f8ae549bfdf29cfaa0006fa43d77d4b80f5 /perl-install/any.pm | |
parent | aaff82646f31a3548a0226a4c3acd9be04f3c8f8 (diff) | |
download | drakx-bdc06e59473edf59c86b7cb83b4687645c4cd24c.tar drakx-bdc06e59473edf59c86b7cb83b4687645c4cd24c.tar.gz drakx-bdc06e59473edf59c86b7cb83b4687645c4cd24c.tar.bz2 drakx-bdc06e59473edf59c86b7cb83b4687645c4cd24c.tar.xz drakx-bdc06e59473edf59c86b7cb83b4687645c4cd24c.zip |
fix to use isLaptop instead of previously always false hasPCMCIA.
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 a4710b375..d21b5eeed 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -163,7 +163,7 @@ sub setupBootloader { ), { label => _("Clean /tmp at each boot"), val => \$b->{CLEAN_TMP}, type => 'bool', advanced => 1 }, { label => _("Precise RAM size if needed (found %d MB)", availableRamMB()), val => \$memsize, advanced => 1 }, - if_(detect_devices::hasPCMCIA, + if_(detect_devices::isLaptop, { label => _("Enable multi profiles"), val => \$profiles, type => 'bool', advanced => 1 }, ), ], |