Skip to content

Commit f7a8b4f

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 (cherry picked from commit aed42b0)
1 parent 7cf0d1c commit f7a8b4f

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
@@ -1531,30 +1531,30 @@ libinstall: build_all $(srcdir)/Modules/xxmodule.c
15311531
fi
15321532
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
15331533
$(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
1534-
-j0 -d $(LIBDEST) -f \
1534+
-d $(LIBDEST) -f \
15351535
-x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
15361536
$(DESTDIR)$(LIBDEST)
15371537
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
15381538
$(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
1539-
-j0 -d $(LIBDEST) -f \
1539+
-d $(LIBDEST) -f \
15401540
-x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
15411541
$(DESTDIR)$(LIBDEST)
15421542
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
15431543
$(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
1544-
-j0 -d $(LIBDEST) -f \
1544+
-d $(LIBDEST) -f \
15451545
-x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
15461546
$(DESTDIR)$(LIBDEST)
15471547
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
15481548
$(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
1549-
-j0 -d $(LIBDEST)/site-packages -f \
1549+
-d $(LIBDEST)/site-packages -f \
15501550
-x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
15511551
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
15521552
$(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
1553-
-j0 -d $(LIBDEST)/site-packages -f \
1553+
-d $(LIBDEST)/site-packages -f \
15541554
-x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
15551555
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
15561556
$(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
1557-
-j0 -d $(LIBDEST)/site-packages -f \
1557+
-d $(LIBDEST)/site-packages -f \
15581558
-x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
15591559
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
15601560
$(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt

0 commit comments

Comments
 (0)