diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-11-25 07:41:15 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-11-25 07:46:11 +0100 |
commit | 13217bb974d4df92858e5b1584979b5df5bcf2b9 (patch) | |
tree | 3a6976620b1c78691f5da3ac2a8654be59bdd551 | |
parent | 77efcb29127f27ec6a2e7a5440585994c0869a5e (diff) | |
download | urpmi-13217bb974d4df92858e5b1584979b5df5bcf2b9.tar urpmi-13217bb974d4df92858e5b1584979b5df5bcf2b9.tar.gz urpmi-13217bb974d4df92858e5b1584979b5df5bcf2b9.tar.bz2 urpmi-13217bb974d4df92858e5b1584979b5df5bcf2b9.tar.xz urpmi-13217bb974d4df92858e5b1584979b5df5bcf2b9.zip |
fix gurpmi --auto not working anymore (mga#14565)
jut use new splited out 'drakbug' module instead of 'standalone'
rationale: @ARGV handling in standalone breaks gurpmi --auto
regression introduced commit a7c54188c5a236a07bc6aeb504f1b384960f80
-rw-r--r-- | NEWS | 4 | ||||
-rwxr-xr-x | gurpmi | 2 | ||||
-rwxr-xr-x | gurpmi2 | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +- gurpmi: + o fix --auto not working anymore (mga#14565) + (regression introduced in 7.32) + Version 8.01 - 9 October 2014 - revert "bump split-length from 8 to 50" @@ -12,7 +12,7 @@ BEGIN { #- set up a safe path and environment eval { use lib qw(/usr/lib/libDrakX); - use standalone; # for reporting crashes in our bugzilla + use drakbug; # for reporting crashes in our bugzilla }; use utf8 'valid'; use Encode '_utf8_on'; @@ -12,7 +12,7 @@ BEGIN { #- set up a safe path and environment eval { use lib qw(/usr/lib/libDrakX); - use standalone; # for reporting crashes in our bugzilla + use drakbug; # for reporting crashes in our bugzilla }; use gurpmi; use gurpm::RPMProgressDialog; |