Fix #661: mbs hard-codes x86_64 as the local architecture

This commit is contained in:
Filip Valder
2017-09-15 14:24:13 +02:00
parent 6b7f869cd2
commit be7c8d7aff
3 changed files with 25 additions and 1 deletions

View File

@@ -326,6 +326,14 @@ class Config(object):
'type': bool,
'default': True,
'desc': 'Remove empty or otherwise useless log files.'},
'arch_autodetect': {
'type': bool,
'default': True,
'desc': 'Auto-detect machine arch when configuring builder.'},
'arch_fallback': {
'type': str,
'default': 'x86_64',
'desc': 'Fallback arch if auto-detection is off or unable to determine it.'},
'scmurls': {
'type': list,
'default': [],