Skip to content

Commit aed42b0

Browse files
committed
Partially revert pythonGH-13078
This reverts commit 1a2dd82. Running compileall with -j0 on solaris does not seem to work, too many processes are started at once and the build hang. Given that we don't really need this optimisation just remove the Makefile change. TN: T422-022
1 parent f71aec1 commit aed42b0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile.pre.in

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1457,30 +1457,30 @@ libinstall: build_all $(srcdir)/Modules/xxmodule.c
14571457
fi
14581458
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
14591459
$(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
1460-
-j0 -d $(LIBDEST) -f \
1460+
-d $(LIBDEST) -f \
14611461
-x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
14621462
$(DESTDIR)$(LIBDEST)
14631463
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
14641464
$(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
1465-
-j0 -d $(LIBDEST) -f \
1465+
-d $(LIBDEST) -f \
14661466
-x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
14671467
$(DESTDIR)$(LIBDEST)
14681468
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
14691469
$(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
1470-
-j0 -d $(LIBDEST) -f \
1470+
-d $(LIBDEST) -f \
14711471
-x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
14721472
$(DESTDIR)$(LIBDEST)
14731473
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
14741474
$(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
1475-
-j0 -d $(LIBDEST)/site-packages -f \
1475+
-d $(LIBDEST)/site-packages -f \
14761476
-x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
14771477
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
14781478
$(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
1479-
-j0 -d $(LIBDEST)/site-packages -f \
1479+
-d $(LIBDEST)/site-packages -f \
14801480
-x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
14811481
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
14821482
$(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
1483-
-j0 -d $(LIBDEST)/site-packages -f \
1483+
-d $(LIBDEST)/site-packages -f \
14841484
-x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
14851485
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
14861486
$(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt

0 commit comments

Comments
 (0)