From 1b6b0e78fef2549cc9b447cbededb638f7388e02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Ta=C5=9Fkaya?= Date: Thu, 26 Mar 2020 16:10:04 +0300 Subject: bpo-40069: Clear out .lst files on make clean (GH-19169) Files created on AIX by xlc (C compiler). --- Makefile.pre.in | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v0.12