diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-12-13 20:19:28 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-12-13 20:19:28 (GMT) |
commit | 15a6c4239c7c71d896b6f0b4edad2fb8643db99d (patch) | |
tree | 64a220e357486579f44c348f03d8d4f8b9bba88e | |
parent | 7b9e7ed59f696e4cf9f832c0ee2899ef3f44f9ec (diff) | |
download | cpython-15a6c4239c7c71d896b6f0b4edad2fb8643db99d.zip cpython-15a6c4239c7c71d896b6f0b4edad2fb8643db99d.tar.gz cpython-15a6c4239c7c71d896b6f0b4edad2fb8643db99d.tar.bz2 |
Issue #25696: Fix installation of Python on UNIX with make -j9.
-rw-r--r-- | Makefile.pre.in | 4 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index ee73edd..3a28e2e 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -914,6 +914,10 @@ $(DESTSHARED): # $(PYTHON) -> python2 -> python$(VERSION)) # Also create equivalent chains for other installed files bininstall: altbininstall + -if test ! -d $(DESTDIR)$(LIBPC); then \ + echo "Creating directory $(LIBPC)"; \ + $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(LIBPC); \ + fi -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \ then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \ else true; \ @@ -56,6 +56,8 @@ Tests Build ----- +- Issue #25696: Fix installation of Python on UNIX with make -j9. + - Issue #25798: Update OS X 10.5+ 32-bit-only installer to build and link with OpenSSL 1.0.2e. |