diff options
| author | Oxore <oxore@protonmail.com> | 2022-05-17 08:58:51 +0300 |
|---|---|---|
| committer | Oxore <oxore@protonmail.com> | 2022-05-17 08:58:51 +0300 |
| commit | b875d19191f659f88b8c43a7f08bf6df740b07c7 (patch) | |
| tree | bd892e4a94fd25c3db850646568e819a94d7ca9e /5-build-newlib.sh | |
| parent | 4ee9cc06c66711d8976065a8d9633023ff509c5e (diff) | |
Add jobs common variable
Diffstat (limited to '5-build-newlib.sh')
| -rw-r--r-- | 5-build-newlib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/5-build-newlib.sh b/5-build-newlib.sh index f4f6d50..5c4429b 100644 --- a/5-build-newlib.sh +++ b/5-build-newlib.sh @@ -9,7 +9,7 @@ echo "Configuring newlib-${newlib_ver}" ../../unpacked/newlib-$newlib_ver/configure --prefix=$prefix_dir --target=$target >configure.log 2>&1 if [ ! $? ]; then less configure.log; exit; fi echo "Building newlib-$newlib_ver" -make -j10 >build.log 2>&1 +make -j$jobs >build.log 2>&1 if [ ! $? ]; then less build.log; exit; fi echo "Installing newlib-$newlib_ver" make install >install.log 2>&1 |
