From: Victor Stinner Date: Mon, 15 Jul 2019 15:18:42 +0000 (+0200) Subject: bpo-37468: make install no longer install wininst-*.exe files (GH-14511) X-Git-Tag: v3.9.0a1~1023 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8692818afd731c1b7e925c626ac8200b1f1c31e;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index ef9a4f88598f..94a1208efa09 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; \ diff --git a/Misc/NEWS.d/next/Build/2019-07-01-14-39-40.bpo-37468.trbQ-_.rst b/Misc/NEWS.d/next/Build/2019-07-01-14-39-40.bpo-37468.trbQ-_.rst new file mode 100644 index 000000000000..b8c70d574076 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2019-07-01-14-39-40.bpo-37468.trbQ-_.rst @@ -0,0 +1,2 @@ +``make install`` no longer installs ``wininst-*.exe`` files used by +distutils bdist_wininst: bdist_wininst only works on Windows.