diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-01-05 20:55:20 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-01-05 20:55:20 +0000 |
commit | fd6b89e3d9cb165829a25cd196b5340104a4e440 (patch) | |
tree | c14cf6f6d8be04fa8cdfe65fc8e68411b399e757 /perl-install/Xconfigurator.pm | |
parent | 49a8229d69ae7b82dff1417857285f5f0a73f43f (diff) | |
download | drakx-fd6b89e3d9cb165829a25cd196b5340104a4e440.tar drakx-fd6b89e3d9cb165829a25cd196b5340104a4e440.tar.gz drakx-fd6b89e3d9cb165829a25cd196b5340104a4e440.tar.bz2 drakx-fd6b89e3d9cb165829a25cd196b5340104a4e440.tar.xz drakx-fd6b89e3d9cb165829a25cd196b5340104a4e440.zip |
no_comment
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 44721b4ea..733fc9de9 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -318,10 +318,11 @@ sub testFinalConfig($;$$) { local $_; local *F; open F, $f_err; - while (<F>) { + i: while (<F>) { if (/\b(error|not supported)\b/i) { my @msg = !/error/ && $_ ; while (<F>) { + /not fatal/ and last i; /^$/ and last; push @msg, $_; } |