diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2022-03-07 22:18:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-07 22:18:54 (GMT) |
commit | 47cca0492b3c379823d4bdb600be56a633e5bb88 (patch) | |
tree | acf0f92cfd08c82268ac9de45ef7b631a5fd5017 /Makefile.pre.in | |
parent | 176835c3d5c70f4c1b152cc2062b549144e37094 (diff) | |
download | cpython-47cca0492b3c379823d4bdb600be56a633e5bb88.zip cpython-47cca0492b3c379823d4bdb600be56a633e5bb88.tar.gz cpython-47cca0492b3c379823d4bdb600be56a633e5bb88.tar.bz2 |
bpo-46933: Fix make distclean regression (GH-31737)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index d2b1a7c..1b40764 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -2384,7 +2384,7 @@ distclean: clobber for file in $(srcdir)/Lib/test/data/* ; do \ if test "$$file" != "$(srcdir)/Lib/test/data/README"; then rm "$$file"; fi; \ done - -rm -f core Makefile Makefile.pre config.status Modules/Setup.local + -rm -f core Makefile Makefile.pre config.status Modules/Setup.local \ Modules/Setup.bootstrap Modules/Setup.stdlib \ Modules/ld_so_aix Modules/python.exp Misc/python.pc \ Misc/python-embed.pc Misc/python-config.sh |