summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r--perl-install/standalone.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
index 34b283979..42f73744f 100644
--- a/perl-install/standalone.pm
+++ b/perl-install/standalone.pm
@@ -213,7 +213,8 @@ sub bug_handler {
exit(1);
}
$progname =~ s|.*/||;
- exec('drakbug', if_($error, '--error', $error), '--incident', $progname,);
+ system('drakbug', if_($error, '--error', $error), '--incident', $progname);
+ c::exit(1);
}
$SIG{SEGV} = sub { bug_handler(@_, 1) };