From: Victor Stinner Date: Sun, 13 Dec 2015 20:20:36 +0000 (+0100) Subject: Issue #25696: Fix installation of Python on UNIX with make -j9. X-Git-Tag: v3.6.0a1~919^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c2021558ef6d813d483298cdf637de78225dc0f2;p=thirdparty%2FPython%2Fcpython.git Issue #25696: Fix installation of Python on UNIX with make -j9. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 823def3cd28d..e659d7526d7f 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1110,6 +1110,10 @@ altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@ 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 index 4ce5b32ab011..490358136a17 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -84,6 +84,8 @@ Tests 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.