diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/steps_gtk.pm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 8532ee616..7e49efdc8 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -102,9 +102,11 @@ sub new($$) { } elsif (arch() =~ /i.86/) { require Xconfig::card; my ($card) = Xconfig::card::probe(); - # early i810 do not support VESA: - undef @servers if $card && $card->{card_name} eq 'i810'; - log::l("graphical installer not supported on early i810"); + if ($card && $card->{card_name} eq 'i810') { + # early i810 do not support VESA: + log::l("graphical installer not supported on early i810"); + undef @servers; + } } foreach (@servers) { |