bpo-40069: Clear out .lst files on make clean (GH-19169)
Files created on AIX by xlc (C compiler).
This commit is contained in:
parent
b09ae3ff43
commit
1b6b0e78fe
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue