Fixed silly typo that gave errors in tests
This commit is contained in:
parent
a3039c4c67
commit
2a79537ba1
1 changed files with 2 additions and 2 deletions
|
@ -36,8 +36,8 @@ class ABI(object):
|
||||||
|
|
||||||
def architecture_compatible(self, parent, child):
|
def architecture_compatible(self, parent, child):
|
||||||
"""Returns true iff the parent and child specs have ABI compatible targets."""
|
"""Returns true iff the parent and child specs have ABI compatible targets."""
|
||||||
return not parent.architecture or not \
|
return not parent.architecture or not child.architecture \
|
||||||
child.achitecture or parent.architecture == child.architecture
|
or parent.architecture == child.architecture
|
||||||
|
|
||||||
|
|
||||||
@memoized
|
@memoized
|
||||||
|
|
Loading…
Reference in a new issue