From: Victor Stinner Date: Sun, 13 Dec 2015 20:19:28 +0000 (+0100) Subject: Issue #25696: Fix installation of Python on UNIX with make -j9. X-Git-Tag: v2.7.12rc1~339 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15a6c4239c7c71d896b6f0b4edad2fb8643db99d;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 ee73eddc5d87..3a28e2e05ace 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 1bef3670e776..c68e9c935b14 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.