diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-07 14:08:14 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-07 14:08:14 +0000 |
commit | 64d043ec0daff2942edf380add5a000d9027cc97 (patch) | |
tree | cd0ae56e2dbd5ee8aad1a88d79c4514ef28fc5d2 /gurpmi2 | |
parent | 31278f90353d545cc4fc4d7f80273a7a0f9e5a3f (diff) | |
download | urpmi-64d043ec0daff2942edf380add5a000d9027cc97.tar urpmi-64d043ec0daff2942edf380add5a000d9027cc97.tar.gz urpmi-64d043ec0daff2942edf380add5a000d9027cc97.tar.bz2 urpmi-64d043ec0daff2942edf380add5a000d9027cc97.tar.xz urpmi-64d043ec0daff2942edf380add5a000d9027cc97.zip |
(configure_urpm) parse command line when initializing urpmi, thus
fixing --urpmi-root
Diffstat (limited to 'gurpmi2')
-rwxr-xr-x | gurpmi2 | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -111,8 +111,12 @@ my ($rpm_lock, $urpmi_lock); #- Creates and configure an urpm object for this application to use. sub configure_urpm() { - my $urpm = urpm->new; - $urpm->get_global_options; + my $urpm; + { + local @ARGV = @ARGV; + $urpm = urpm->new_parse_cmdline; + } + $urpm->{fatal} = sub { Gtk2::MessageDialog->new($mainw, [qw(modal destroy-with-parent)], 'error', 'ok', Locale::gettext::iconv($_[1], undef, 'UTF-8'))->run; quit(); |