diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-02-09 11:38:02 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-02-09 11:38:02 +0000 |
commit | 4ce69234e573c58002f3d1a9f361489410e883b2 (patch) | |
tree | e9f590e2fd57d708f76c3249a442864a2b50a365 /perl-install/Xconfigurator.pm | |
parent | 06f02f9536b2a9fb1283dd33c441b5e66da23551 (diff) | |
download | drakx-backup-do-not-use-4ce69234e573c58002f3d1a9f361489410e883b2.tar drakx-backup-do-not-use-4ce69234e573c58002f3d1a9f361489410e883b2.tar.gz drakx-backup-do-not-use-4ce69234e573c58002f3d1a9f361489410e883b2.tar.bz2 drakx-backup-do-not-use-4ce69234e573c58002f3d1a9f361489410e883b2.tar.xz drakx-backup-do-not-use-4ce69234e573c58002f3d1a9f361489410e883b2.zip |
no_comment
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index c8d94f082..fd73f0a3f 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -327,20 +327,20 @@ sub testFinalConfig($;$$) { my $b = before_leaving { unlink $f_err }; - local $_; - local *F; open F, $f_err; - i: while (<F>) { - if (/\b(error|not supported)\b/i) { - my @msg = !/error/ && $_ ; - while (<F>) { - /not fatal/ and last i; - /^$/ and last; - push @msg, $_; + unless (c::Xtest(":9")) { + local $_; + local *F; open F, $f_err; + i: while (<F>) { + if (/\b(error|not supported)\b/i) { + my @msg = !/error/ && $_ ; + while (<F>) { + /not fatal/ and last i; + /^$/ and last; + push @msg, $_; + } + $in->ask_warn('', [ _("An error occurred:"), " ", @msg, _("\ntry changing some parameters") ]); + return 0; } - $in->ask_warn('', [ _("An error occurred:"), " ", - @msg, - _("\ntry changing some parameters") ]); - return 0; } } |