diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-01-03 17:22:45 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-01-03 17:22:45 +0000 |
commit | 5924cab0393c4133126cf8f63656729616085840 (patch) | |
tree | f48f5e9eb107f2eacf01c6fe3445107384b5eba5 /perl-install/do_pkgs.pm | |
parent | 9cac0d55f3a70f14a12f784ebf725ac4977d5ef6 (diff) | |
download | drakx-5924cab0393c4133126cf8f63656729616085840.tar drakx-5924cab0393c4133126cf8f63656729616085840.tar.gz drakx-5924cab0393c4133126cf8f63656729616085840.tar.bz2 drakx-5924cab0393c4133126cf8f63656729616085840.tar.xz drakx-5924cab0393c4133126cf8f63656729616085840.zip |
'--best-output' is no longer an urpmi option (and it's not necessary
anyway since --auto is specified)
Diffstat (limited to 'perl-install/do_pkgs.pm')
-rw-r--r-- | perl-install/do_pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/do_pkgs.pm b/perl-install/do_pkgs.pm index dd39c749e..864c8dac9 100644 --- a/perl-install/do_pkgs.pm +++ b/perl-install/do_pkgs.pm @@ -172,7 +172,7 @@ sub install { my $_wait = $do->in->wait_message('', N("Installing packages...")); $do->in->suspend; log::explanations("installed packages @l"); - my $ret = system('urpmi', '--allow-medium-change', '--auto', '--best-output', '--no-verify-rpm', @l) == 0; + my $ret = system('urpmi', '--allow-medium-change', '--auto', '--no-verify-rpm', @l) == 0; $do->in->resume; $ret; } |