[Python-checkins] bpo-46933: Fix make distclean regression (GH-31737)

tiran webhook-mailer at python.org
Mon Mar 7 17:18:58 EST 2022


https://github.com/python/cpython/commit/47cca0492b3c379823d4bdb600be56a633e5bb88
commit: 47cca0492b3c379823d4bdb600be56a633e5bb88
branch: main
author: Erlend Egeberg Aasland <erlend.aasland at innova.no>
committer: tiran <christian at python.org>
date: 2022-03-07T23:18:54+01:00
summary:

bpo-46933: Fix make distclean regression (GH-31737)

files:
M Makefile.pre.in

diff --git a/Makefile.pre.in b/Makefile.pre.in
index d2b1a7ce458d9..1b40764b2ef95 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -2384,7 +2384,7 @@ distclean: clobber
 	for file in $(srcdir)/Lib/test/data/* ; do \
 	    if test "$$file" != "$(srcdir)/Lib/test/data/README"; then rm "$$file"; fi; \
 	done
-	-rm -f core Makefile Makefile.pre config.status Modules/Setup.local
+	-rm -f core Makefile Makefile.pre config.status Modules/Setup.local \
 	    Modules/Setup.bootstrap Modules/Setup.stdlib \
 		Modules/ld_so_aix Modules/python.exp Misc/python.pc \
 		Misc/python-embed.pc Misc/python-config.sh



More information about the Python-checkins mailing list