diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-10-20 13:13:56 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-10-20 13:13:56 +0000 |
commit | 89b1217172c61d545703ed2784dfe4aeba700cab (patch) | |
tree | 1579b06a468316d938026a500b1fa0d1a4fe3f9b /urpm | |
parent | e6326641304ccb047ce8a624f4847149d29de90d (diff) | |
download | urpmi-89b1217172c61d545703ed2784dfe4aeba700cab.tar urpmi-89b1217172c61d545703ed2784dfe4aeba700cab.tar.gz urpmi-89b1217172c61d545703ed2784dfe4aeba700cab.tar.bz2 urpmi-89b1217172c61d545703ed2784dfe4aeba700cab.tar.xz urpmi-89b1217172c61d545703ed2784dfe4aeba700cab.zip |
Record used tags for hdlist usage selection even if --qf is used
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/args.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/urpm/args.pm b/urpm/args.pm index e6274341..2e3b638d 100644 --- a/urpm/args.pm +++ b/urpm/args.pm @@ -34,10 +34,7 @@ sub import { # used by urpmf sub add_param_closure { my (@tags) = @_; - return sub { - $::qf .= join ':', '', map "%$_", @tags; - $::params{$_} = 1 for @tags; - }; + return sub { $::qf .= join ':', '', map "%$_", @tags }; } # options specifications for Getopt::Long |