From: Antonin Godard Date: Wed, 15 Feb 2023 10:55:41 +0000 (+0000) Subject: busybox: rm temporary files if do_compile was interrupted X-Git-Tag: 2020-04.24-dunfell~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3f31997c633e8476bad68c81fac0dcd0750c7d4;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git busybox: rm temporary files if do_compile was interrupted To avoid working with undeterministic config files, remove all the temporary files to start from scratch. Signed-off-by: Antonin Godard Signed-off-by: Steve Sakoman --- diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index 616a23258ac..f0c5666f473 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc @@ -157,6 +157,9 @@ do_compile() { cp include/autoconf.h.orig include/autoconf.h if [ "${BUSYBOX_SPLIT_SUID}" = "1" -a x`grep "CONFIG_FEATURE_INDIVIDUAL=y" .config` = x ]; then + # Guard againt interrupted do_compile: clean temporary files. + rm -f .config.app.suid .config.app.nosuid .config.disable.apps .config.nonapps + # split the .config into two parts, and make two busybox binaries oe_runmake busybox.cfg.suid oe_runmake busybox.cfg.nosuid