aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2024-06-23 11:55:12 -0600
committerSimon Glass <sjg@chromium.org>2024-07-03 07:36:33 +0100
commit7e93bd30b1e2a00a46bb60f7122f79801bc0590b (patch)
treecf2074261a58e0ace74c05d718bb71bfcc772403 /tools
parent3187da4bea64f94055239761fc0f58a68c8e3236 (diff)
downloadu-boot-7e93bd30b1e2a00a46bb60f7122f79801bc0590b.zip
u-boot-7e93bd30b1e2a00a46bb60f7122f79801bc0590b.tar.gz
u-boot-7e93bd30b1e2a00a46bb60f7122f79801bc0590b.tar.bz2
buildman: Avoid rebuilding when --mrproper is used
When this flag is enabled, 'make mrproper' is always used when reconfiguring, so there is no point in doing it again. Update this. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/buildman/builderthread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py
index 0a7ff2e..c0b1067 100644
--- a/tools/buildman/builderthread.py
+++ b/tools/buildman/builderthread.py
@@ -700,7 +700,7 @@ class BuilderThread(threading.Thread):
job.work_in_output, job.adjust_cfg)
failed = result.return_code or result.stderr
did_config = do_config
- if failed and not do_config:
+ if failed and not do_config and not self.mrproper:
# If our incremental build failed, try building again
# with a reconfig.
if self.builder.force_config_on_failure: