diff --git a/master.cfg b/master.cfg index e2845e3..9202f5f 100644 --- a/master.cfg +++ b/master.cfg @@ -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)