diff options
author | luigi <luigi@FreeBSD.org> | 2010-09-28 22:30:11 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2010-09-28 22:30:11 +0000 |
commit | 58ec2fd820078708aa5c97b1150f36d7f4ac91f3 (patch) | |
tree | d0333eabf64a9f3fb3b57d587712b7008c846091 /release/picobsd/build | |
parent | 1735f368567208173f75dc511c40567ec2c812e7 (diff) | |
download | FreeBSD-src-58ec2fd820078708aa5c97b1150f36d7f4ac91f3.zip FreeBSD-src-58ec2fd820078708aa5c97b1150f36d7f4ac91f3.tar.gz |
use make from the toolchain, as the source tree may depend on
specific features (e.g. on recent HEAD, rtld fails with older 'make')
MFC after: 3 days
Diffstat (limited to 'release/picobsd/build')
-rwxr-xr-x | release/picobsd/build/picobsd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/picobsd/build/picobsd b/release/picobsd/build/picobsd index c9e8fc7..b798389 100755 --- a/release/picobsd/build/picobsd +++ b/release/picobsd/build/picobsd @@ -176,9 +176,9 @@ create_includes_and_libraries2() { # opt_dir opt_target ( cd ${SRC}; # make -DNOCLEAN -DNOPROFILE -DNOGAMES -DNOLIBC_R -DPICOBSD buildworld if [ -d "$1" ] ; then - cd $1 ; make $2 # specific target, e.g. ld-elf.so + cd $1 ; ${BINMAKE} $2 # specific target, e.g. ld-elf.so else - make _+_= $no toolchain _includes _libraries + ${BINMAKE} _+_= $no toolchain _includes _libraries fi ) } |