diff options
| author | Luigi Rizzo <luigi@FreeBSD.org> | 2014-05-23 08:10:07 +0000 |
|---|---|---|
| committer | Luigi Rizzo <luigi@FreeBSD.org> | 2014-05-23 08:10:07 +0000 |
| commit | 60ae18aea89d9dbcb3f55332e1f13d75512a3e2b (patch) | |
| tree | 80c628b3bb7a2a82f51a9ccf6e6f667701bf907a | |
| parent | d17b5104a9434afa07c3cb2b6a93caa892ab3573 (diff) | |
Notes
| -rwxr-xr-x | release/picobsd/build/picobsd | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/release/picobsd/build/picobsd b/release/picobsd/build/picobsd index 6ecf76f83a6f..946f097b2ec5 100755 --- a/release/picobsd/build/picobsd +++ b/release/picobsd/build/picobsd @@ -177,7 +177,7 @@ create_includes_and_libraries2() { # opt_dir opt_target cd $1 ; ${BINMAKE} ${o_par} $2 # specific target, e.g. ld-elf.so else export MAKEOBJDIRPREFIX=${l_objtree} - make ${o_par} $no toolchain + make ${o_par} $no toolchain libraries # XXX do we need any of these ? eval export `cd ${SRC}; ${BINMAKE} -f Makefile.inc1 -V WMAKEENV` [ ${o_arch} != `uname -m` ] && \ @@ -1055,8 +1055,13 @@ set_defaults while [ true ]; do log "Parsing $1" case $1 in + -j) + o_par="-j $2" + shift + ;; + --par) - o_par="-j 8" + o_par="-j 8" # watch out, this might be too large ;; --src) # set the source path instead of /usr/src |
