mirror of
https://xff.cz/git/u-boot/
synced 2025-09-30 15:01:27 +02:00
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>
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user