diff options
| author | Michael Brown | 2021-01-30 18:37:09 +0100 |
|---|---|---|
| committer | Michael Brown | 2021-01-30 18:37:09 +0100 |
| commit | 6c91eebd0a7d655227936eb2ae5c0f450bdb8699 (patch) | |
| tree | 4a52e70d4e69e26fba71d28e202db15224551d8f | |
| parent | [build] Avoid shell brace expansion in "make clean" (diff) | |
| download | ipxe-6c91eebd0a7d655227936eb2ae5c0f450bdb8699.tar.gz ipxe-6c91eebd0a7d655227936eb2ae5c0f450bdb8699.tar.xz ipxe-6c91eebd0a7d655227936eb2ae5c0f450bdb8699.zip | |
[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 <mcb30@ipxe.org>
| -rw-r--r-- | src/Makefile.housekeeping | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
