diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | gurpmi | 2 | ||||
-rwxr-xr-x | gurpmi2 | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -2,6 +2,8 @@ - bump split-length from 8 to 50 improves installing gnome in a chroot from 14m to 11m - update bash completion +- gurpmi: + o fix segfaulting when managing exceptions - fix some warnings with perl 5.20 Version 7.31 - 24 January 2014 @@ -17,7 +17,7 @@ use gurpmi; use urpm::util 'basename'; # For other distros w/o exception support: -eval { Glib->enable_exceptions2 }; +eval { Glib->enable_exceptions3 }; if (my $err = $@) { warn "Error: $err\n"; } @@ -29,7 +29,7 @@ our $test = 0; our $use_provides = 1; # For other distros w/o exception support: -eval { Glib->enable_exceptions2 }; +eval { Glib->enable_exceptions3 }; if (my $err = $@) { warn "Error: $err\n"; } |