]> granicus.if.org Git - python/commitdiff
Issue #25696: Fix installation of Python on UNIX with make -j9.
authorVictor Stinner <victor.stinner@gmail.com>
Sun, 13 Dec 2015 20:20:36 +0000 (21:20 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Sun, 13 Dec 2015 20:20:36 +0000 (21:20 +0100)
Makefile.pre.in
Misc/NEWS

index 823def3cd28dfecf63de97563821374dde8b04ea..e659d7526d7fa7bf8b3ab95cbad297047b12890b 100644 (file)
@@ -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; \
index 4ce5b32ab011a59d0976d636367b7c17fa764e93..490358136a1795f2c326ea0ebde8f85662cc9ae6 100644 (file)
--- 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.