[Python-checkins] cpython (3.5): Issue #25696: Fix installation of Python on UNIX with make -j9.
victor.stinner
python-checkins at python.org
Sun Dec 13 15:22:38 EST 2015
https://hg.python.org/cpython/rev/87d96b349ff5
changeset: 99547:87d96b349ff5
branch: 3.5
parent: 99544:9552fcd303fd
user: Victor Stinner <victor.stinner at gmail.com>
date: Sun Dec 13 21:20:36 2015 +0100
summary:
Issue #25696: Fix installation of Python on UNIX with make -j9.
files:
Makefile.pre.in | 4 ++++
Misc/NEWS | 2 ++
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1110,6 +1110,10 @@
fi
bininstall: altbininstall
+ -if test ! -d $(DESTDIR)$(LIBPC); then \
+ echo "Creating directory $(LIBPC)"; \
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(LIBPC); \
+ fi
-if test -f $(DESTDIR)$(BINDIR)/python3$(EXE) -o -h $(DESTDIR)$(BINDIR)/python3$(EXE); \
then rm -f $(DESTDIR)$(BINDIR)/python3$(EXE); \
else true; \
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,8 @@
Build
-----
+- Issue #25696: Fix installation of Python on UNIX with make -j9.
+
- Issue #25798: Update OS X 10.5 installer to use OpenSSL 1.0.2e.
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list