From 83068a90c809a09e9f08f7a60beafe13725e564a Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Tue, 2 Sep 2014 18:32:27 -0700 Subject: [PATCH] Makefile: fix test-clean by using 'distclean' --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a0e05583..17858940 100644 --- a/Makefile +++ b/Makefile @@ -221,10 +221,10 @@ test-git-ignore: $(PYTHON) misc/build_helpers/test-git-ignore.py test-clean: - find . |grep -vEe "_darcs|allfiles.tmp|src/allmydata/_(version|appname).py" |sort >allfiles.tmp.old + find . |grep -vEe "allfiles.tmp|src/allmydata/_(version|appname).py" |sort >allfiles.tmp.old $(MAKE) - $(MAKE) clean - find . |grep -vEe "_darcs|allfiles.tmp|src/allmydata/_(version|appname).py" |sort >allfiles.tmp.new + $(MAKE) distclean + find . |grep -vEe "allfiles.tmp|src/allmydata/_(version|appname).py" |sort >allfiles.tmp.new diff allfiles.tmp.old allfiles.tmp.new # It would be nice if 'make clean' deleted any automatically-generated -- 2.45.2