Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Sep 2010 22:30:11 +0000 (UTC)
From:      Luigi Rizzo <luigi@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r213252 - head/release/picobsd/build
Message-ID:  <201009282230.o8SMUBDU087224@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: luigi
Date: Tue Sep 28 22:30:11 2010
New Revision: 213252
URL: http://svn.freebsd.org/changeset/base/213252

Log:
  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

Modified:
  head/release/picobsd/build/picobsd

Modified: head/release/picobsd/build/picobsd
==============================================================================
--- head/release/picobsd/build/picobsd	Tue Sep 28 21:13:54 2010	(r213251)
+++ head/release/picobsd/build/picobsd	Tue Sep 28 22:30:11 2010	(r213252)
@@ -176,9 +176,9 @@ create_includes_and_libraries2() { # opt
     ( 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
     )
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009282230.o8SMUBDU087224>