enable-targets=all should be disabled for AIX, not BSD

This commit is contained in:
Sergio Durigan Junior 2015-06-22 23:19:52 -04:00
parent e0c1f42841
commit 5a43f85011

View file

@ -775,7 +775,6 @@ anything for now."""
class RunTestGDBBSD_Common (BuildAndTestGDBFactory):
"""Common BSD test configurations"""
def __init__ (self, **kwargs):
self.enable_targets_all = False
self.extra_conf_flags = [ 'CFLAGS=-I/usr/local/include', '--disable-werror' ]
self.make_command = 'gmake'
BuildAndTestGDBFactory.__init__ (self, **kwargs)
@ -795,6 +794,7 @@ class RunTestGDBAIX_Common (BuildAndTestGDBFactory):
def __init__ (self, **kwargs):
# Unfortunately we have to disable -Werror there...
self.extra_conf_flags = [ '--disable-werror' ]
self.enable_targets_all = False
self.make_command = 'gmake'
self.extra_make_flags = [ 'MAKEINFO=true' ]
BuildAndTestGDBFactory.__init__ (self, **kwargs)