enable-targets=all should be disabled for AIX, not BSD
This commit is contained in:
parent
e0c1f42841
commit
5a43f85011
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue