summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;