Run the master Makefile with -j1

Also remove some instructions that are only useful for debugging.
This commit is contained in:
Pierre Labastie 2022-11-04 13:19:18 +01:00
parent fd90f80466
commit 35f6261ab5

View file

@ -34,10 +34,10 @@ run_make() { #
# Build the system # Build the system
if [ -e "$MKFILE" ] ; then if [ -e "$MKFILE" ] ; then
echo -ne "Building the system...\n" echo -ne "Building the system...\n"
if { echo try tty; tty; }; then # if { echo try tty; tty; }; then
cd "$JHALFSDIR" && make cd "$JHALFSDIR" && make -j1
echo -ne "done\n" echo -ne "done\n"
else echo there is no terminal!!; fi # else echo there is no terminal!!; fi
fi fi
fi fi
} }