aboutsummaryrefslogtreecommitdiff
path: root/release/picobsd
diff options
context:
space:
mode:
authorLuigi Rizzo <luigi@FreeBSD.org>2015-07-08 16:41:25 +0000
committerLuigi Rizzo <luigi@FreeBSD.org>2015-07-08 16:41:25 +0000
commite4405be58b489bcc85cbbbe78417f1cbde5a8bca (patch)
tree0fc936756b671eba63183ca2b0efd59f2ca4984e /release/picobsd
parent64bb8a3881aab0c9fecd7c3dceeea2e89e146e0e (diff)
Notes
Diffstat (limited to 'release/picobsd')
-rwxr-xr-xrelease/picobsd/build/picobsd5
1 files changed, 3 insertions, 2 deletions
diff --git a/release/picobsd/build/picobsd b/release/picobsd/build/picobsd
index 728e9f4e3d68..61eaa2215d84 100755
--- a/release/picobsd/build/picobsd
+++ b/release/picobsd/build/picobsd
@@ -725,10 +725,10 @@ populate_mfs_tree() {
# /stand/crunch is our main binary, we extract its libs
find_progs ${dst}/stand/crunch
if [ -n "${u_libs}" ] ; then
- mkdir -p ${dst}/lib && cp -p ${u_libs} ${dst}/lib
+ mkdir -p ${dst}/lib && (cp -p ${u_libs} ${dst}/lib || log "copy libs ${u_libs} failed" )
mkdir -p ${dst}/libexec
create_includes_and_libraries2 libexec/rtld-elf
- find_progs ld-elf.so.1 && cp -p ${u_progs} ${dst}/libexec
+ find_progs ld-elf.so.1 && ( cp -p ${u_progs} ${dst}/libexec || log "copy ${u_progs} failed" )
fi
[ -n "${copy_files}" ] && do_copyfiles ${dst} copy_files
@@ -959,6 +959,7 @@ set_build_parameters() {
export WITH_GNUCXX=yes
export WITHOUT_CLANG=yes
export WITHOUT_ICONV=yes
+ export WITHOUT_TESTS=yes
# XXX why change machine_arch ?
#-- export MACHINE_ARCH=`uname -m` MACHINE=`uname -m`