From: Philipp Kern Date: Sun, 27 Nov 2011 15:45:23 +0000 (+0000) Subject: wanna-build: add debug output for overwritten binaries X-Git-Url: https://git.donarmstrong.com/?p=wannabuild.git;a=commitdiff_plain;h=a0990e04e79633f0f9e8bc27454a5ab9b433f395;ds=sidebyside wanna-build: add debug output for overwritten binaries --- diff --git a/bin/wanna-build b/bin/wanna-build index 0d8bd1a..5e84b6a 100755 --- a/bin/wanna-build +++ b/bin/wanna-build @@ -2154,7 +2154,8 @@ sub parse_all_v3 { # does at least one binary exist in the database and is more recent - if so, we're probably just outdated, ignore the source package for my $bin (@{$pkgs->{'binary'}}) { if ($binary->{$bin} and vercmp($pkgs->{'version'}, $binary->{$bin}->{'version'}) < 0) { - print "$logstr skipped because binaries (assumed to be) overwritten\n" if $verbose || $simulate; + print "$logstr skipped because binaries (assumed to be) overwritten (" . + $bin . ", " . $pkgs->{'version'} . " vs. " . $binary->{$bin}->{'version'} . ")\n" if $verbose || $simulate; next SRCS; } }