The following reply was made to PR conf/182172; it has been noted by GNATS.
From: Garrett Cooper <yaneurab...@gmail.com> To: Glen Barber <g...@freebsd.org> Cc: freebsd-gnats-sub...@freebsd.org Subject: Re: conf/182172: make: don't know how to make /usr/obj/usr/src.svn/tmp/usr/lib/libunbound.a Date: Mon, 16 Sep 2013 16:57:10 -0700 On Sep 16, 2013, at 4:53 PM, Glen Barber wrote: > Please include src.conf/make.conf. I posted it in this pastebin for another PR: http://pastebin.com/xAeJtB6C I executed the build like this: env TARGET=i386 TARGET_ARCH=i386 WITHOUT_BMAKE=1 sh /root/build.sh And my dumb build script looks like this: # cat /root/build.sh #!/bin/sh set -ex : ${JOBS=$(( 2 * $(sysctl -n kern.smp.cpus) ))} rm -f ~/bw.s (make buildworld -j$JOBS 2>&1 && : > ~/bw.s) | tee ~/bw.log [ -f ~/bw.s ] rm -f ~/bk.s (make buildkernel -j$JOBS 2>&1 && : > ~/bk.s) | tee ~/bk.log [ -f ~/bk.s ] Thanks! _______________________________________________ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"