Skip to content

Commit 3a09491

Browse files
committed
gh-104692: Include commoninstall as a prerequisite for bininstall
This ensures that commoninstall is completed before bininstall is started when parallel builds are used (make -j install), and so the python3 symlink is only installed after all standard library modules are installed.
1 parent ff7f731 commit 3a09491

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1980,7 +1980,7 @@ altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
19801980
fi
19811981

19821982
.PHONY: bininstall
1983-
bininstall: altbininstall
1983+
bininstall: commoninstall altbininstall
19841984
if test ! -d $(DESTDIR)$(LIBPC); then \
19851985
echo "Creating directory $(LIBPC)"; \
19861986
$(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(LIBPC); \

0 commit comments

Comments
 (0)