diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-11-25 19:10:53 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-11-25 19:10:53 +0000 |
commit | 1db83e6350358e634948ce1668fefe3982cb5aeb (patch) | |
tree | 8c4db910b82c0c414e35b7f33851137091440d4c /targets/pseudo | |
parent | 7b3ea376a27ada7a61eb0c3102f13040fb8c16cb (diff) | |
download | src-1db83e6350358e634948ce1668fefe3982cb5aeb.tar.gz src-1db83e6350358e634948ce1668fefe3982cb5aeb.zip |
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
Notes
Notes:
svn path=/head/; revision=291308
Diffstat (limited to 'targets/pseudo')
-rw-r--r-- | targets/pseudo/bootstrap-tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/targets/pseudo/bootstrap-tools/Makefile b/targets/pseudo/bootstrap-tools/Makefile index a9cdfe5ee9d8..75c08d89bde9 100644 --- a/targets/pseudo/bootstrap-tools/Makefile +++ b/targets/pseudo/bootstrap-tools/Makefile @@ -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 |