]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40069: Clear out .lst files on make clean (GH-19169)
authorBatuhan Taşkaya <batuhanosmantaskaya@gmail.com>
Thu, 26 Mar 2020 13:10:04 +0000 (16:10 +0300)
committerGitHub <noreply@github.com>
Thu, 26 Mar 2020 13:10:04 +0000 (14:10 +0100)
Files created on AIX by xlc (C compiler).

Makefile.pre.in

index caa1d3764853432f8d91c50be21ba62309598d70..a38825f7e72f077a6bb61ff04df3eb4569cac3bb 100644 (file)
@@ -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