aboutsummaryrefslogtreecommitdiff
path: root/release/picobsd/build/picobsd
diff options
context:
space:
mode:
authorLuigi Rizzo <luigi@FreeBSD.org>2010-09-28 22:30:11 +0000
committerLuigi Rizzo <luigi@FreeBSD.org>2010-09-28 22:30:11 +0000
commit09bc43b0cff60a5951ffbe713f74ac02f1f7094d (patch)
treed0333eabf64a9f3fb3b57d587712b7008c846091 /release/picobsd/build/picobsd
parent4a2b4bc031afb10a38033997e75c2b35d3a4fd41 (diff)
downloadsrc-09bc43b0cff60a5951ffbe713f74ac02f1f7094d.tar.gz
src-09bc43b0cff60a5951ffbe713f74ac02f1f7094d.zip
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
Notes
Notes: svn path=/head/; revision=213252
Diffstat (limited to 'release/picobsd/build/picobsd')
-rwxr-xr-xrelease/picobsd/build/picobsd4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/picobsd/build/picobsd b/release/picobsd/build/picobsd
index c9e8fc7296fe..b798389286c9 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
)
}