Run the master Makefile with -j1
Also remove some instructions that are only useful for debugging.
This commit is contained in:
parent
fd90f80466
commit
35f6261ab5
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue