]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - tools/buildman/builderthread.py
Makefile: remove generated boards.cfg within make distclean
[karo-tx-uboot.git] / tools / buildman / builderthread.py
index 32297e20e8f04814083cb355a7d6106c1383ae85..8214662e368890d05bc1017c15adc9acb430031f 100644 (file)
@@ -91,7 +91,7 @@ class BuilderThread(threading.Thread):
             commit: Commit object that is being built
             brd: Board object that is being built
             stage: Stage of the build. Valid stages are:
-                        distclean - can be called to clean source
+                        mrproper - can be called to clean source
                         config - called to configure for a board
                         build - the main make invocation - it does the build
             args: A list of arguments to pass to 'make'
@@ -200,8 +200,8 @@ class BuilderThread(threading.Thread):
 
                 # If we need to reconfigure, do that now
                 if do_config:
-                    result = self.Make(commit, brd, 'distclean', cwd,
-                            'distclean', *args, env=env)
+                    result = self.Make(commit, brd, 'mrproper', cwd,
+                            'mrproper', *args, env=env)
                     result = self.Make(commit, brd, 'config', cwd,
                             *(args + config_args), env=env)
                     config_out = result.combined