diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-27 07:11:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-27 07:11:36 +0000 |
commit | e77514efe5849336ef3c3e89576f11b5c02e8903 (patch) | |
tree | 484fa2a59610badc6caa6c770ed83d046fd1ae5c /urpmf | |
parent | e9cef0ca77acbe74bcda82214b84a8abca28b1e5 (diff) | |
download | urpmi-e77514efe5849336ef3c3e89576f11b5c02e8903.tar urpmi-e77514efe5849336ef3c3e89576f11b5c02e8903.tar.gz urpmi-e77514efe5849336ef3c3e89576f11b5c02e8903.tar.bz2 urpmi-e77514efe5849336ef3c3e89576f11b5c02e8903.tar.xz urpmi-e77514efe5849336ef3c3e89576f11b5c02e8903.zip |
- urpmf
o fix -a and -o
Diffstat (limited to 'urpmf')
-rwxr-xr-x | urpmf | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -155,10 +155,10 @@ if ($multitag) { my $next_st = $multitag ? 'next' : 'return 1'; my @inner = ( - "my \$s = sprintf(qq{$proto}, $sprintfargs);", - "\$s =~ $expr or $next_st;", - $uniq ? ('$uniq{$s} and ' . $next_st . ';', '$uniq{$s} = 1;') : (), - 'print $s, "\n";', + "\$_ = sprintf(qq{$proto}, $sprintfargs);", + "$expr or $next_st;", + $uniq ? ('$uniq{$_} and ' . $next_st . ';', '$uniq{$_} = 1;') : (), + 'print $_, "\n";', ); if ($multitag) { |