summaryrefslogtreecommitdiff
path: root/4-build-gcc-stage-1.sh
diff options
context:
space:
mode:
Diffstat (limited to '4-build-gcc-stage-1.sh')
-rw-r--r--4-build-gcc-stage-1.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/4-build-gcc-stage-1.sh b/4-build-gcc-stage-1.sh
index 65be2eb..a944a94 100644
--- a/4-build-gcc-stage-1.sh
+++ b/4-build-gcc-stage-1.sh
@@ -9,7 +9,7 @@ echo "Configuring gcc-${gcc_ver} (stage 1)"
../../unpacked/gcc-$gcc_ver/configure --prefix=$prefix_dir --target=$target --disable-multilib --enable-languages=c,c++ >configure.log 2>&1
if [ ! $? ]; then less configure.log; exit; fi
echo "Building gcc-$gcc_ver (stage 1)"
-make -j10 all-gcc >build.log 2>&1
+make -j$jobs all-gcc >build.log 2>&1
if [ ! $? ]; then less build.log; exit; fi
echo "Installing gcc-$gcc_ver (stage 1)"
make install-gcc >install.log 2>&1