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

Files created on AIX by xlc (C compiler).
This commit is contained in:
Batuhan Taşkaya 2020-03-26 16:10:04 +03:00 committed by GitHub
parent b09ae3ff43
commit 1b6b0e78fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View 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