diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 2 | ||||
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 80f8deda2..7ea14705a 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -946,7 +946,7 @@ sub configureX { require Xconfig::main; Xconfig::main::configure_everything_auto_install($o->{raw_X}, $o->do_pkgs, $o->{X}, { allowFB => $o->{allowFB}, - allowNVIDIA_rpms => install_any::allowNVIDIA_rpms($o->{packages}), + allowNVIDIA_rpms => $o->do_pkgs->check_kernel_module_packages('NVIDIA_kernel-', 'NVIDIA_GLX'), }); configureXAfter($o); } diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 10e340b0b..d8e6b9724 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1249,7 +1249,7 @@ sub configureX { my $options = { allowFB => $o->{allowFB}, - allowNVIDIA_rpms => install_any::allowNVIDIA_rpms($o->{packages}), + allowNVIDIA_rpms => $o->do_pkgs->check_kernel_module_packages('NVIDIA_kernel-', 'NVIDIA_GLX'), }; require Xconfig::main; |