From: Batuhan Taşkaya Date: Thu, 26 Mar 2020 13:10:04 +0000 (+0300) Subject: bpo-40069: Clear out .lst files on make clean (GH-19169) X-Git-Tag: v3.9.0a6~267 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1b6b0e78fef2549cc9b447cbededb638f7388e02;p=thirdparty%2FPython%2Fcpython.git bpo-40069: Clear out .lst files on make clean (GH-19169) Files created on AIX by xlc (C compiler). --- diff --git a/Makefile.pre.in b/Makefile.pre.in index caa1d3764853..a38825f7e72f 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