summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-11-25 07:41:15 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-11-25 07:46:11 +0100
commit13217bb974d4df92858e5b1584979b5df5bcf2b9 (patch)
tree3a6976620b1c78691f5da3ac2a8654be59bdd551
parent77efcb29127f27ec6a2e7a5440585994c0869a5e (diff)
downloadurpmi-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--NEWS4
-rwxr-xr-xgurpmi2
-rwxr-xr-xgurpmi22
3 files changed, 6 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 53335817..b87db1d1 100644
--- a/NEWS
+++ b/NEWS
@@ -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"
diff --git a/gurpmi b/gurpmi
index 2fae94e2..db3c4008 100755
--- a/gurpmi
+++ b/gurpmi
@@ -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';
diff --git a/gurpmi2 b/gurpmi2
index 2fb44633..0dcdc402 100755
--- a/gurpmi2
+++ b/gurpmi2
@@ -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;