From 3dc6b22315db1cc96ab511a554fe591def21b068 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Fri, 6 Feb 2015 13:37:26 -0500 Subject: [PATCH] Fixing build breakage --- master.cfg | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/master.cfg b/master.cfg index 985a4d6..6cbf74a 100644 --- a/master.cfg +++ b/master.cfg @@ -456,27 +456,28 @@ The parameters of the class are: CompileClass = CompileGDB TestClass = TestGDB + extra_conf_flags = None + + extra_make_flags = None + extra_make_check_flags = None + test_env = None + + # Set this to false to disable parallel testing (i.e., do not use + # FORCE_PARALLEL) + test_parallel = True + + # Set this to the make command that you want to run in the "make" + # steps. + make_command = 'make' + + # Set this to False to disable using system's debuginfo files + # (i.e., do not use '--with-separate-debug-dir') + use_system_debuginfo = True + def __init__ (self, architecture_triplet = []): factory.BuildFactory.__init__ (self) self.architecture_triplet = architecture_triplet - self.extra_conf_flags = None - - self.extra_make_flags = None - self.extra_make_check_flags = None - self.test_env = None - - # Set this to false to disable parallel testing (i.e., do not use - # FORCE_PARALLEL) - self.test_parallel = True - - # Set this to the make command that you want to run in the "make" - # steps. - self.make_command = 'make' - - # Set this to False to disable using system's debuginfo files - # (i.e., do not use '--with-separate-debug-dir') - self.use_system_debuginfo = True self.addStep (RemoveDirectory (dir = WithProperties (r"%s/build", r'builddir'),