summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-09-04 16:29:46 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-09-04 16:31:37 +0200
commita7c54188c5a236a07bc6aeb504f1b384960f802d (patch)
tree134a89237245e603c15bdc5f51f90529a56d2547
parent18a18468e1033311f3de3badf9d6e14cb5f67677 (diff)
downloadurpmi-a7c54188c5a236a07bc6aeb504f1b384960f802d.tar
urpmi-a7c54188c5a236a07bc6aeb504f1b384960f802d.tar.gz
urpmi-a7c54188c5a236a07bc6aeb504f1b384960f802d.tar.bz2
urpmi-a7c54188c5a236a07bc6aeb504f1b384960f802d.tar.xz
urpmi-a7c54188c5a236a07bc6aeb504f1b384960f802d.zip
report crashes through drakbug
-rw-r--r--NEWS1
-rwxr-xr-xgurpmi4
-rwxr-xr-xgurpmi24
3 files changed, 9 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 38bd863c..097786ee 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,7 @@
- update bash completion
- gurpmi:
o fix segfaulting when managing exceptions
+ o report crashes through drakbug
- fix some warnings with perl 5.20
Version 7.31 - 24 January 2014
diff --git a/gurpmi b/gurpmi
index 7c79f87e..a7929588 100755
--- a/gurpmi
+++ b/gurpmi
@@ -10,6 +10,10 @@ BEGIN { #- set up a safe path and environment
delete @ENV{qw(ENV BASH_ENV IFS CDPATH)};
}
+eval {
+ use lib qw(/usr/lib/libDrakX);
+ use standalone; # for reporting crashes in our bugzilla
+};
use utf8 'valid';
use Encode '_utf8_on';
use Gtk3;
diff --git a/gurpmi2 b/gurpmi2
index 7f346a39..2fb44633 100755
--- a/gurpmi2
+++ b/gurpmi2
@@ -10,6 +10,10 @@ BEGIN { #- set up a safe path and environment
delete @ENV{qw(ENV BASH_ENV IFS CDPATH)};
}
+eval {
+ use lib qw(/usr/lib/libDrakX);
+ use standalone; # for reporting crashes in our bugzilla
+};
use gurpmi;
use gurpm::RPMProgressDialog;
use urpm::install;