diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2006-11-20 10:21:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2006-11-20 10:21:26 +0000 |
commit | 6603546b71ea32d9dbebcf7061f89c08cefae7b0 (patch) | |
tree | 18141e1b923b8d727d46e77b6f5d6fb7045f6393 /urpm.pm | |
parent | d7f5a89d191f21e96ea0cb4d48baa401587c5de1 (diff) | |
download | urpmi-6603546b71ea32d9dbebcf7061f89c08cefae7b0.tar urpmi-6603546b71ea32d9dbebcf7061f89c08cefae7b0.tar.gz urpmi-6603546b71ea32d9dbebcf7061f89c08cefae7b0.tar.bz2 urpmi-6603546b71ea32d9dbebcf7061f89c08cefae7b0.tar.xz urpmi-6603546b71ea32d9dbebcf7061f89c08cefae7b0.zip |
rename {skip} into {cmdline_skiplist} (neater)
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -571,12 +571,13 @@ sub _configure_parallel { #- read urpmi.cfg file as well as necessary synthesis files #- options : +#- root +#- cmdline_skiplist +#- #- callback (urpmf) #- need_hdlist (for urpmf: to be able to have info not available in synthesis) #- nodepslist (for urpmq: we don't need the hdlist/synthesis) #- no_skiplist (urpmf) -#- root -#- skip #- #- synthesis (use this synthesis file, and only this synthesis file) #- @@ -717,7 +718,7 @@ sub configure { unless ($options{nodepslist} || $options{no_skiplist}) { my %uniq; $urpm->compute_flags( - get_packages_list($urpm->{skiplist}, $options{skip}), + get_packages_list($urpm->{skiplist}, $options{cmdline_skiplist}), skip => 1, callback => sub { my ($urpm, $pkg) = @_; |