summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-07-15 15:18:42 (GMT)
committerGitHub <noreply@github.com>2019-07-15 15:18:42 (GMT)
commite8692818afd731c1b7e925c626ac8200b1f1c31e (patch)
tree1da8d67df96fd3aaa061452db5572b220d575d1f /Makefile.pre.in
parent52693c10e82622d883433b779a45d0bd792f17ed (diff)
downloadcpython-e8692818afd731c1b7e925c626ac8200b1f1c31e.zip
cpython-e8692818afd731c1b7e925c626ac8200b1f1c31e.tar.gz
cpython-e8692818afd731c1b7e925c626ac8200b1f1c31e.tar.bz2
bpo-37468: make install no longer install wininst-*.exe files (GH-14511)
make install no longer installs "wininst-*.exe" files used by distutils bdist_wininst: bdist_wininst only works on Windows.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index ef9a4f8..94a1208 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1431,6 +1431,9 @@ libinstall: build_all $(srcdir)/Modules/xxmodule.c
*CVS) ;; \
*.py[co]) ;; \
*.orig) ;; \
+ # bpo-37468: Don't install distutils/command/wininst-*.exe files used \
+ # by distutils bdist_wininst: bdist_wininst only works on Windows. \
+ *wininst-*.exe) ;; \
*~) ;; \
*) \
if test -d $$i; then continue; fi; \