diff options
author | Francois Pons <fpons@mandriva.com> | 2001-09-13 13:08:31 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-09-13 13:08:31 +0000 |
commit | 9825694557a783d3ab38ca3aec237105fd8cc5cc (patch) | |
tree | 689e72df28cdfe0474a9a438adfdc348e3312380 /perl-install/install2.pm | |
parent | b2d43448672c6312d5888e7862c8d6c3b8bba1e3 (diff) | |
download | drakx-9825694557a783d3ab38ca3aec237105fd8cc5cc.tar drakx-9825694557a783d3ab38ca3aec237105fd8cc5cc.tar.gz drakx-9825694557a783d3ab38ca3aec237105fd8cc5cc.tar.bz2 drakx-9825694557a783d3ab38ca3aec237105fd8cc5cc.tar.xz drakx-9825694557a783d3ab38ca3aec237105fd8cc5cc.zip |
do not output error message for bad kernel if using --g_auto_install.
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 30451fda3..90f8dafd2 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -111,7 +111,7 @@ sub selectMouse { sub setupSCSI { my ($clicked, $ent_number, $auto) = @_; - if (!$::live && !$o->{blank}) { + if (!$::live && !$::g_auto_install && !$o->{blank}) { -s modules::cz_file() or die _("Can't access kernel modules corresponding to your kernel (file %s is missing)", modules::cz_file()); } |