diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-23 15:27:31 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-23 15:28:32 -0500 |
commit | 9b88e1719f8dc7623f263ff4e0812d60bc62af2a (patch) | |
tree | acde405051197a22ca0c2d1cfd2f0d8c8438ded7 | |
parent | 15649a3dabd4ade8e8f5601e2710043b95556838 (diff) |
Reverse some changes that came from the odroid_n2+ plain and systemd branches.
-rw-r--r-- | env.sh | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -36,8 +36,8 @@ LFS_PWD="lfs" NUMPROCS="$(getconf _NPROCESSORS_ONLN)" numjobs="$((NUMPROCS * 2 - 1))" # Make flags for multiple jobs -MAKEFLAGS="-j5" -NINJAJOBS="5" +MAKEFLAGS="""-j${numjobs}" +NINJAJOBS="${NUMPROCS}" unset numjobs @@ -52,4 +52,6 @@ export LFS_VER LFS_DISK LFS_FS LFS_PART LFS_PWD NUMPROCS MAKEFLAGS NINJAJOBS export SPINNER export TESTERUID +# Features of this build system won't like vt100/vt220 and some others. +# Set to xterm TERM="xterm" |