diff options
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 33dcef642..b622ca666 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -203,7 +203,7 @@ sub setupBootloaderBefore { ); #- propose the default fb mode for kernel fb, if bootsplash is installed. - my $need_fb = $do_pkgs->are_installed('bootsplash'); + my $need_fb = -e "$::prefix/usr/share/bootsplash/scripts/make-boot-splash"; bootloader::suggest($bootloader, $all_hds, vga_fb => ($force_vga || $vga && $need_fb) && $vga_fb, quiet => $quiet); |