Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Nov 2015 19:10:53 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291308 - head/targets/pseudo/bootstrap-tools
Message-ID:  <201511251910.tAPJAr32091960@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Wed Nov 25 19:10:53 2015
New Revision: 291308
URL: https://svnweb.freebsd.org/changeset/base/291308

Log:
  META MODE: Don't override DESTDIR to the default when building the toolchain.
  
  For this case, the normal META MODE staging logic should be used.  The
  BSARGS having DESTDIR= is due to Makefile.inc1 overriding DESTDIR to
  something when appropriate.  For the toolchain stage META MODE is in charge of
  it, not Makefile.inc1.
  
  At least include/, if staging it to the host stagedir, was impacted from
  this.  Staging of include.host is not yet done.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/targets/pseudo/bootstrap-tools/Makefile

Modified: head/targets/pseudo/bootstrap-tools/Makefile
==============================================================================
--- head/targets/pseudo/bootstrap-tools/Makefile	Wed Nov 25 19:10:28 2015	(r291307)
+++ head/targets/pseudo/bootstrap-tools/Makefile	Wed Nov 25 19:10:53 2015	(r291308)
@@ -78,4 +78,4 @@ BSTCARGS= \
 
 # finally we build toolchain leveraging the above.
 bootstrap-toolchain:	.MAKE cross-tools
-	${BSTCENV} ${MAKE} -C ${.CURDIR:H:H} ${BSTCARGS} toolchain
+	${BSTCENV} ${MAKE} -C ${.CURDIR:H:H} ${BSTCARGS:NDESTDIR=} toolchain



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