Disabling Python build on AIX builders

This commit is contained in:
Sergio Durigan Junior 2016-08-09 13:52:14 -04:00
parent fd26fd6bb7
commit 3c970b5a77

View file

@ -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' ]