From 62cd8d5f25188139b215bcee9b4667f45455d856 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 22 Jun 2017 23:06:38 -0400 Subject: [PATCH] fix regression in make clean commit 40005d3ff6b5674184c296e47e5dfff9a46a0be0 renamed the build directories from build-* to build/*. update make clean to remove the new build tree. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 53ee435..b2ae96f 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ SRC_DIRS = gcc-$(GCC_VER) binutils-$(BINUTILS_VER) musl-$(MUSL_VER) \ all: clean: - rm -rf gcc-* binutils-* musl-* gmp-* mpc-* mpfr-* isl-* build-* linux-* + rm -rf gcc-* binutils-* musl-* gmp-* mpc-* mpfr-* isl-* build build-* linux-* distclean: clean rm -rf sources