diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-04-24 13:41:22 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-04-24 13:41:22 +0000 |
commit | cfe32c10f81b48e5529fa4718ce0dabc65714527 (patch) | |
tree | 9f4af9acaaddaff6bfa98b3c0d381b1d6a3fd63d /perl-install | |
parent | bc09a72e9aa40984fb99d6ddd67dd0859d461889 (diff) | |
download | drakx-cfe32c10f81b48e5529fa4718ce0dabc65714527.tar drakx-cfe32c10f81b48e5529fa4718ce0dabc65714527.tar.gz drakx-cfe32c10f81b48e5529fa4718ce0dabc65714527.tar.bz2 drakx-cfe32c10f81b48e5529fa4718ce0dabc65714527.tar.xz drakx-cfe32c10f81b48e5529fa4718ce0dabc65714527.zip |
do not set urpmi in automatic mode for gtk installs
(was set correctly for plain interactive installs only)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 921e05f1c..40c100ba8 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- do not set urpmi in automatic mode for gtk installs + (was set correctly for plain interactive installs only) + Version 12.33 - 23 April 2009 - fix not offering to upgrade 32 bit installations diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 764808da0..694278119 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -631,7 +631,7 @@ sub installPackages { } }; my $install_result; - catch_cdie { $install_result = $o->install::steps::installPackages($packages) } + catch_cdie { $install_result = $o->install::steps::installPackages($packages, 'interactive') } sub { my $rc = install::steps_interactive::installPackages__handle_error($o, $_[0]); $rc or $w->destroy; |