From e8692818afd731c1b7e925c626ac8200b1f1c31e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 15 Jul 2019 17:18:42 +0200 Subject: 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. --- Makefile.pre.in | 3 +++ Misc/NEWS.d/next/Build/2019-07-01-14-39-40.bpo-37468.trbQ-_.rst | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 Misc/NEWS.d/next/Build/2019-07-01-14-39-40.bpo-37468.trbQ-_.rst 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; \ 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 0000000..b8c70d5 --- /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. -- cgit v0.12