diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-05 10:33:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-05 10:33:32 +0000 |
commit | 378cb63c9060803e98ad7e3485d2cef278b4c0c2 (patch) | |
tree | 98d455abb8301ee9a292e41e3b5f0912f3900ac3 /perl-install/Xconfigurator.pm | |
parent | 3dd0c333a60d7f109042a84773e913b8bdd9d37c (diff) | |
download | drakx-backup-do-not-use-378cb63c9060803e98ad7e3485d2cef278b4c0c2.tar drakx-backup-do-not-use-378cb63c9060803e98ad7e3485d2cef278b4c0c2.tar.gz drakx-backup-do-not-use-378cb63c9060803e98ad7e3485d2cef278b4c0c2.tar.bz2 drakx-backup-do-not-use-378cb63c9060803e98ad7e3485d2cef278b4c0c2.tar.xz drakx-backup-do-not-use-378cb63c9060803e98ad7e3485d2cef278b4c0c2.zip |
testFinalConfig now always returns true if test is skipped because of a bad_card (back to the old behaviour, this was no good (the aim is to enable changing the monitor when test is skipped))
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 03817d3d8..e0f969710 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -590,7 +590,7 @@ sub testFinalConfig { my $verybad_card = $o->{card}{driver} eq 'i810'; $verybad_card ||= $o->{card}{driver} eq 'nvidia' && !$::isStandalone; #- avoid testing during install at any price. - $bad_card || $verybad_card and return $skip_badcard; #- deactivating bad_card test too. + $bad_card || $verybad_card and return 1; #- deactivating bad_card test too. my $mesg = _("Do you want to test the configuration?"); my $def = 1; |