Make python 3.4.10 -j1

Fix the transient parallelism issues (same as py3.3).

Fixes #283
This commit is contained in:
fosslinux 2023-04-30 11:17:26 +10:00
parent 37f0832e2a
commit de9f898f85
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ src_compile() {
# Build pgen
make -j1 Parser/pgen
# Regen graminit.c and graminit.h
make "${MAKEJOBS}" Include/graminit.h
make -j1 Include/graminit.h
# Regenerate some Python scripts using the other regenerated files
# Must move them out to avoid using Lib/ module files which are
@ -72,7 +72,7 @@ src_compile() {
python token.py
# Now build the main program
make "${MAKEJOBS}" CFLAGS="-U__DATE__ -U__TIME__"
make -j1 CFLAGS="-U__DATE__ -U__TIME__"
}
src_install() {