Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -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) ;; \
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding comments here breaks make libinstall and hence make install, at least for some types of make. Fixed by bpo-37653 / #14911.

*~) ;; \
*) \
if test -d $$i; then continue; fi; \
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
``make install`` no longer installs ``wininst-*.exe`` files used by
distutils bdist_wininst: bdist_wininst only works on Windows.