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.
This commit is contained in:
Victor Stinner 2019-07-15 17:18:42 +02:00 committed by GitHub
parent 52693c10e8
commit e8692818af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -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; \

View File

@ -0,0 +1,2 @@
``make install`` no longer installs ``wininst-*.exe`` files used by
distutils bdist_wininst: bdist_wininst only works on Windows.