diff options
author | Batuhan Taşkaya <batuhanosmantaskaya@gmail.com> | 2020-03-26 13:10:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-26 13:10:04 (GMT) |
commit | 1b6b0e78fef2549cc9b447cbededb638f7388e02 (patch) | |
tree | 79e0b9c84df937b3356a475d32893932e9acf48e | |
parent | b09ae3ff43111a336c0b706ea32fa07f88c992d9 (diff) | |
download | cpython-1b6b0e78fef2549cc9b447cbededb638f7388e02.zip cpython-1b6b0e78fef2549cc9b447cbededb638f7388e02.tar.gz cpython-1b6b0e78fef2549cc9b447cbededb638f7388e02.tar.bz2 |
bpo-40069: Clear out .lst files on make clean (GH-19169)
Files created on AIX by xlc (C compiler).
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index caa1d37..a38825f 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 |