From de9f898f85a618effaa36720a407ee3eaadfa81e Mon Sep 17 00:00:00 2001 From: fosslinux Date: Sun, 30 Apr 2023 11:17:26 +1000 Subject: [PATCH] Make python 3.4.10 -j1 Fix the transient parallelism issues (same as py3.3). Fixes #283 --- sysc/python-3.4.10/python-3.4.10.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysc/python-3.4.10/python-3.4.10.sh b/sysc/python-3.4.10/python-3.4.10.sh index ee4e43d..e6de82d 100755 --- a/sysc/python-3.4.10/python-3.4.10.sh +++ b/sysc/python-3.4.10/python-3.4.10.sh @@ -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() {