Prevent parallelism in the master Makefile

This commit is contained in:
Pierre Labastie 2022-11-04 13:18:11 +01:00
parent 262e174aa1
commit fd90f80466

View file

@ -287,10 +287,12 @@ build_Makefile() { #
done done
# Drop in the main target 'all:' and the chapter targets with each sub-target # Drop in the main target 'all:' and the chapter targets with each sub-target
# as a dependency. # as a dependency. Also prevent running targets in parallel.
( (
cat << EOF cat << EOF
.NOTPARALLEL:
all: ck_UID ck_terminal mk_SETUP mk_LUSER mk_SUDO mk_CHROOT mk_BOOT create-sbu_du-report mk_BLFS_TOOL mk_CUSTOM_TOOLS all: ck_UID ck_terminal mk_SETUP mk_LUSER mk_SUDO mk_CHROOT mk_BOOT create-sbu_du-report mk_BLFS_TOOL mk_CUSTOM_TOOLS
@sudo env LFS=\$(MOUNT_PT) kernfs-scripts/teardown.sh @sudo env LFS=\$(MOUNT_PT) kernfs-scripts/teardown.sh
EOF EOF