mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-10 05:57:28 +00:00
When merging binaries, count a binary as built in unstable if the testing architecture is architecture-dependent and the unstable architecture is architecture-independent.
This commit is contained in:
parent
72eb973a3c
commit
4cc353296a
@ -629,8 +629,9 @@ class Britney(object):
|
||||
binpkg, binarch = b.split('/')
|
||||
if binarch == arch:
|
||||
target_value = target_binaries[binpkg]
|
||||
if current_arch in (
|
||||
target_value[ARCHITECTURE], "all"):
|
||||
target_arch = target_value[ARCHITECTURE]
|
||||
if (current_arch in (target_arch, "all") or
|
||||
target_arch == "all"):
|
||||
built = True
|
||||
break
|
||||
if built:
|
||||
|
Loading…
x
Reference in New Issue
Block a user