[RFC 3/5] remove carry output if scripts/carray.sh fails
Ben Dooks
ben.dooks at codethink.co.uk
Mon Dec 2 03:03:34 PST 2024
If the script fails, we end up trying to build either
an empty or damaged .c file. Just remove it and let
gcc fail on non-existant file.
Signed-off-by: Ben Dooks <ben.dooks at codethink.co.uk>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index dae282c..a798691 100644
--- a/Makefile
+++ b/Makefile
@@ -502,7 +502,7 @@ compile_d2c = $(CMD_PREFIX)mkdir -p `dirname $(1)`; \
compile_carray = $(CMD_PREFIX)mkdir -p `dirname $(1)`; \
echo " CARRAY $(subst $(build_dir)/,,$(1))"; \
$(eval CARRAY_VAR_LIST := $(carray-$(subst .carray.c,,$(shell basename $(1)))-y)) \
- $(src_dir)/scripts/carray.sh -i $(2) -l "$(CARRAY_VAR_LIST)" > $(1)
+ $(src_dir)/scripts/carray.sh -i $(2) -l "$(CARRAY_VAR_LIST)" > $(1) || rm $(1)
compile_gen_dep = $(CMD_PREFIX)mkdir -p `dirname $(1)`; \
echo " GEN-DEP $(subst $(build_dir)/,,$(1))"; \
echo "$(1:.dep=$(2)): $(3)" >> $(1)
--
2.37.2.352.g3c44437643
More information about the opensbi
mailing list