Added ARCHITECTURE field when showing specs
This commit is contained in:
parent
54042e399b
commit
d9e8bf1807
1 changed files with 3 additions and 3 deletions
|
@ -1735,9 +1735,9 @@ def write(s, c):
|
|||
elif named_str == 'OPTIONS':
|
||||
if self.variants:
|
||||
write(fmt % str(self.variants), '+')
|
||||
elif named_str == 'TARGET':
|
||||
if self.target:
|
||||
write(fmt % str(self.target), '=')
|
||||
elif named_str == 'ARCHITECTURE':
|
||||
if self.architecture:
|
||||
write(fmt % self.architecture, '=')
|
||||
elif named_str == 'SHA1':
|
||||
if self.dependencies:
|
||||
out.write(fmt % str(self.dep_hash(8)))
|
||||
|
|
Loading…
Reference in a new issue