mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
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:
parent
52693c10e8
commit
e8692818af
2 changed files with 5 additions and 0 deletions
|
@ -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; \
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
``make install`` no longer installs ``wininst-*.exe`` files used by
|
||||
distutils bdist_wininst: bdist_wininst only works on Windows.
|
Loading…
Add table
Add a link
Reference in a new issue