]> git.donarmstrong.com Git - wannabuild.git/blobdiff - bin/wanna-build
Auto-committed schema changes.
[wannabuild.git] / bin / wanna-build
index 5e84b6af0e57c80af7e699a05bc10c035eaee965..c9531211e54a03cff965eebc3fe617ea8539f7ba 100755 (executable)
@@ -2153,7 +2153,7 @@ 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) {
+                if ($binary->{$bin} and $binary->{$bin}->{'arch'} ne 'all' and vercmp($pkgs->{'version'}, $binary->{$bin}->{'version'}) < 0) {
                     print "$logstr skipped because binaries (assumed to be) overwritten (" .
                        $bin . ", " . $pkgs->{'version'} . " vs. " . $binary->{$bin}->{'version'} . ")\n" if $verbose || $simulate;
                     next SRCS;