From aa262b44b5b4b7a7dc472016e32f10d8bbc9344a Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sat, 15 May 2010 21:34:27 +0000 Subject: [PATCH] Issue #8665: Fix `make pycremoval` exiting with non-zero status. --- Makefile.pre.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index 55cac909de..69a3199189 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1165,7 +1165,7 @@ TAGS:: # files, which clobber removes as well pycremoval: -find $(srcdir) -name '*.py[co]' -exec rm -f {} ';' - -find $(srcdir) -name '__pycache__' -exec rmdir {} ';' + -find $(srcdir) -name '__pycache__' -exec rmdir {} '+' rmtestturds: -rm -f *BAD *GOOD *SKIPPED -- 2.40.0