summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-12-13 20:19:28 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-12-13 20:19:28 (GMT)
commit15a6c4239c7c71d896b6f0b4edad2fb8643db99d (patch)
tree64a220e357486579f44c348f03d8d4f8b9bba88e
parent7b9e7ed59f696e4cf9f832c0ee2899ef3f44f9ec (diff)
downloadcpython-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.in4
-rw-r--r--Misc/NEWS2
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; \
diff --git a/Misc/NEWS b/Misc/NEWS
index 1bef367..c68e9c9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.