[Python-checkins] (no subject)

Batuhan Taşkaya webhook-mailer at python.org
Thu Mar 26 09:10:11 EDT 2020




To: python-checkins at python.org
Subject: bpo-40069: Clear out .lst files on make clean (GH-19169)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/1b6b0e78fef2549cc9b447cbededb638f738=
8e02
commit: 1b6b0e78fef2549cc9b447cbededb638f7388e02
branch: master
author: Batuhan Ta=C5=9Fkaya <batuhanosmantaskaya at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-03-26T14:10:04+01:00
summary:

bpo-40069: Clear out .lst files on make clean (GH-19169)

Files created on AIX by xlc (C compiler).

files:
M Makefile.pre.in

diff --git a/Makefile.pre.in b/Makefile.pre.in
index caa1d37648534..a38825f7e72f0 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1772,6 +1772,7 @@ clean-retain-profile: pycremoval
 	find . -name '*.[oa]' -exec rm -f {} ';'
 	find . -name '*.s[ol]' -exec rm -f {} ';'
 	find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
+	find . -name '*.lst' -exec rm -f {} ';'
 	find build -name 'fficonfig.h' -exec rm -f {} ';' || true
 	find build -name '*.py' -exec rm -f {} ';' || true
 	find build -name '*.py[co]' -exec rm -f {} ';' || true



More information about the Python-checkins mailing list