summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--urpm/args.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index a53eca5a..18ccda1a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
- urpmf
o fix an *old* bug (since december 2002) making urpmf keeps parsed
hdlist files in memory (was fixed for multitags, but not for simple tags)
+- urpmi:
+ o fix --expect-install (broken since 4.9.30!)
Version 4.10.14.2 - 21 December 2007, by Pascal "Pixel" Rigaux
diff --git a/urpm/args.pm b/urpm/args.pm
index cb4d0e9f..c5460fe3 100644
--- a/urpm/args.pm
+++ b/urpm/args.pm
@@ -151,7 +151,7 @@ my %options_spec = (
noscripts => sub { $urpm->{options}{noscripts} = 1 },
repackage => sub { $urpm->{options}{repackage} = 1 },
'more-choices' => sub { $urpm->{options}{morechoices} = 1 },
- 'expect-install!' => \$::expect_install,
+ 'expect-install!' => \$::urpm::main_loop::expect_install,
'nolock' => \$options{nolock},
restricted => \$::restricted,
'no-md5sum' => \$::nomd5sum,