diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | gurpmi | 4 | ||||
-rwxr-xr-x | gurpmi2 | 4 |
3 files changed, 9 insertions, 0 deletions
@@ -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 @@ -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; @@ -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; |