summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/standalone.pm4
2 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 9a20e8838..5dfff46cd 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,5 +1,6 @@
- diskdrake:
o allow setting "flush" option (for vfat)
+- drakbug: do not report "wizcancel" exceptions (#32308)
Version 10.4.157 - 03 August 2007, by Thierry Vignaud
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
index 7e86c1d7a..c20381911 100644
--- a/perl-install/standalone.pm
+++ b/perl-install/standalone.pm
@@ -194,8 +194,8 @@ sub bug_handler {
# we want the full backtrace:
$error .= common::backtrace() if $error;
my $progname = $0;
- # do not loop if drakbug crashes:
- if ($progname =~ /drakbug/) {
+ # do not loop if drakbug crashes and do not complain about wizcancel:
+ if ($progname =~ /drakbug/ || $error =~ /wizcancel/) {
warn $error;
exit(1);
}