diff options
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | urpmf | 8 |
2 files changed, 7 insertions, 4 deletions
@@ -1,3 +1,6 @@ +- urpmf + o fix -a and -o + Version 4.10.11 - 24 September 2007, by Pascal "Pixel" Rigaux - create /var/tmp in chroots too @@ -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) { |