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
|
@ -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…
Reference in New Issue