summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-08-09 14:17:21 +0000
committerThierry Vignaud <tv@mandriva.org>2007-08-09 14:17:21 +0000
commit3b29f9c55564c106f0b63054d63ec752e724d1a5 (patch)
tree37b1c52721c122d28b208846d492e4e55fcab205 /perl-install/standalone.pm
parentbc34e434a12b4020e236cb2304a256298615f6dc (diff)
downloaddrakx-3b29f9c55564c106f0b63054d63ec752e724d1a5.tar
drakx-3b29f9c55564c106f0b63054d63ec752e724d1a5.tar.gz
drakx-3b29f9c55564c106f0b63054d63ec752e724d1a5.tar.bz2
drakx-3b29f9c55564c106f0b63054d63ec752e724d1a5.tar.xz
drakx-3b29f9c55564c106f0b63054d63ec752e724d1a5.zip
(bug_handler) do a "normal" die if drakbug is not present
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r--perl-install/standalone.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
index 485d3cf29..62ff33c59 100644
--- a/perl-install/standalone.pm
+++ b/perl-install/standalone.pm
@@ -207,7 +207,7 @@ sub bug_handler {
my $progname = $0;
# do not loop if drakbug crashes and do not complain about wizcancel:
- if ($progname =~ /drakbug/ || $error =~ /wizcancel/) {
+ if ($progname =~ /drakbug/ || $error =~ /wizcancel/ || !-x '/usr/bin/drakbug') {
warn $error;
exit(1);
}