diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/standalone.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index d5cd0f762..89ccd3163 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- do a normal die if drakbug is not present + Version 10.4.163 - 9 August 2007, by Pascal "Pixel" Rigaux - for XFdrake: use update-alternatives command instead doing things by hand 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); } |