logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: de9f898f85a618effaa36720a407ee3eaadfa81e
parent 37f0832e2a99cb4c8c443c8dc6bfdcb830c8ff05
Author: fosslinux <fosslinux@aussies.space>
Date:   Sun, 30 Apr 2023 11:17:26 +1000

Make python 3.4.10 -j1

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

Fixes #283

Diffstat:

Msysc/python-3.4.10/python-3.4.10.sh4++--
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 @@ -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() {