From 829aacabd375fc1edb7b60dfde08afd2d8af0ebf Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 30 Mar 2013 12:12:19 +0000 Subject: fix warning in debug message (Argument "19697|19719|19..." isn't numeric in array element at ...URPM/Resolve.pm' (introduced by pixel in commit r227273 on Sep 7 2007: "add some debug messages) --- URPM/Resolve.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'URPM') diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm index 19622fa..896fe50 100644 --- a/URPM/Resolve.pm +++ b/URPM/Resolve.pm @@ -1296,7 +1296,7 @@ sub _handle_diff_provides { } if (@best == @unsatisfied) { - $urpm->{debug_URPM}("promoting " . join(' ', _ids_to_fullnames($urpm, @best)) . " because of conflict above") if $urpm->{debug_URPM}; + $urpm->{debug_URPM}("promoting " . join(' ', _ids_to_fullnames($urpm, map { split('\|', $_) } @best)) . " because of conflict above") if $urpm->{debug_URPM}; push @$properties, map { +{ required => $_, promote => $n, psel => $pkg } } @best; } else { if ($from_state) { -- cgit v1.2.1