From f2db122660f2f03632253493dd7ae801e9567056 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Fri, 22 Jul 2022 16:39:58 +0200 Subject: [PATCH] Don't make clean after a gccrs bootstrap It looks like after a bootstrap make clean gets confused. Just blow away the whole builddir when we are done with it. --- builder/master.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/builder/master.cfg b/builder/master.cfg index 2047eaa..0d94e67 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -1686,7 +1686,10 @@ gccrust_bootstrap_factory.addStep(gccrust_make_bootstrap_step) gccrust_bootstrap_factory.addStep(gccrust_check_bootstrap_step) gccrust_bootstrap_factory.addStep(gccrust_check_check_step) gccrust_bootstrap_factory.addSteps(gccrust_bunsen_steps) -gccrust_bootstrap_factory.addStep(gccrust_make_clean_step) +# It looks like after a bootstrap make clean gets confused +# Just blow away the whole builddir when we are done with it +#gccrust_bootstrap_factory.addStep(gccrust_make_clean_step) +gccrust_bootstrap_factory.addStep(gccrust_rm_build_step) gccrust_fedora_x86_64_builder = util.BuilderConfig( name="gccrust-fedora-x86_64", -- 2.31.1