From: Michael Brown Date: Sat, 30 Jan 2021 17:37:09 +0000 (+0000) Subject: [build] Use recursive deletion for "make clean" X-Git-Tag: secboot-ioactive-20221109~257 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c91eebd0a7d655227936eb2ae5c0f450bdb8699;p=thirdparty%2Fipxe.git [build] Use recursive deletion for "make clean" Directories may be left behind by failed filesystem image builds, and will not currently be successfully removed by a "make clean". Signed-off-by: Michael Brown --- diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index 822afdfe5..d760f5524 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -1563,7 +1563,7 @@ VERYCLEANUP := $(foreach V,$(VERYCLEANUP),$(call ALLBIN,$(V))) endif clean : - $(RM) $(CLEANUP) + $(RM) -r $(CLEANUP) veryclean : clean $(RM) -r $(VERYCLEANUP)