Disabling Python build on AIX builders
This commit is contained in:
parent
fd26fd6bb7
commit
3c970b5a77
1 changed files with 2 additions and 1 deletions
|
@ -1120,7 +1120,8 @@ class RunTestGDBAIX_Common (BuildAndTestGDBFactory):
|
|||
"""Common AIX test configurations"""
|
||||
def __init__ (self, **kwargs):
|
||||
# Unfortunately we have to disable -Werror there...
|
||||
self.extra_conf_flags = [ '--disable-werror' ]
|
||||
# ... and now we also have to disable Python.
|
||||
self.extra_conf_flags = [ '--disable-werror', '--with-python=no' ]
|
||||
self.enable_targets_all = False
|
||||
self.make_command = 'gmake'
|
||||
self.extra_make_flags = [ 'MAKEINFO=true' ]
|
||||
|
|
Loading…
Reference in a new issue