Skip to content

Commit 1b6b0e7

Browse files
authored
bpo-40069: Clear out .lst files on make clean (GH-19169)
Files created on AIX by xlc (C compiler).
1 parent b09ae3f commit 1b6b0e7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Makefile.pre.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1772,6 +1772,7 @@ clean-retain-profile: pycremoval
17721772
find . -name '*.[oa]' -exec rm -f {} ';'
17731773
find . -name '*.s[ol]' -exec rm -f {} ';'
17741774
find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
1775+
find . -name '*.lst' -exec rm -f {} ';'
17751776
find build -name 'fficonfig.h' -exec rm -f {} ';' || true
17761777
find build -name '*.py' -exec rm -f {} ';' || true
17771778
find build -name '*.py[co]' -exec rm -f {} ';' || true

0 commit comments

Comments
 (0)