Toolchain: Fix typo when setting make flags

I defaultet MAKEFLAGS to -j which will launch processes in parallel
without any limit.
This commit is contained in:
Bananymous 2023-11-09 21:57:45 +02:00
parent 8e5224ef53
commit bc8fd1285f
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ cp -r $BANAN_ROOT_DIR/libc/include $BANAN_SYSROOT/usr/include
rm -rf $BANAN_TOOLCHAIN_PREFIX
if [[ -z ${MAKEFLAGS:x} ]]; then
export MAKEFLAGS="-j$(proc)"
export MAKEFLAGS="-j$(nproc)"
fi
mkdir -p $BANAN_BUILD_DIR/toolchain