Commit 117051af authored by Victor Stinner's avatar Victor Stinner

(Merge 3.5) Issue #25696: Fix installation of Python on UNIX with make -j9.

parents 67dbd0d7 c2021558
...@@ -1110,6 +1110,10 @@ altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@ ...@@ -1110,6 +1110,10 @@ altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
fi fi
bininstall: altbininstall 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); \ -if test -f $(DESTDIR)$(BINDIR)/python3$(EXE) -o -h $(DESTDIR)$(BINDIR)/python3$(EXE); \
then rm -f $(DESTDIR)$(BINDIR)/python3$(EXE); \ then rm -f $(DESTDIR)$(BINDIR)/python3$(EXE); \
else true; \ else true; \
......
...@@ -492,6 +492,8 @@ Tests ...@@ -492,6 +492,8 @@ Tests
Build Build
----- -----
- Issue #25696: Fix installation of Python on UNIX with make -j9.
- Issue #24986: It is now possible to build Python on Windows without errors - Issue #24986: It is now possible to build Python on Windows without errors
when external libraries are not available. when external libraries are not available.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment