浏览代码

fix regression in make clean

commit 40005d3ff6b5674184c296e47e5dfff9a46a0be0 renamed the build
directories from build-* to build/*. update make clean to remove the
new build tree.
Rich Felker 7 年之前
父节点
当前提交
62cd8d5f25
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Makefile

+ 1 - 1
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