Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Nov 2015 19:44:28 +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: r291317 - head/targets/pseudo/bootstrap-tools
Message-ID:  <201511251944.tAPJiSKV003808@repo.freebsd.org>

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

Log:
  META MODE: Need to include the LEGACY_TOOLS directories into PATH.
  
  This is just as Makefile.inc1 does it for these phases.  Otherwise some
  of the build tools are not found and used properly, such as 'make-roken'
  in the kerberos5 build on older releases.
  
  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:13:45 2015	(r291316)
+++ head/targets/pseudo/bootstrap-tools/Makefile	Wed Nov 25 19:44:28 2015	(r291317)
@@ -21,7 +21,8 @@ BSENV= \
 	TARGET=${HOST_MACHINE} TARGET_ARCH=${HOST_MACHINE_ARCH} \
 	WITHOUT_STAGING=1 STAGE_ROOT= BOOTSTRAPPING_TOOLS=1 \
 	WORLDTMP=${BTOOLSDIR} LEGACY_TOOLS=${LEGACY_TOOLS} \
-	INSTALL="sh ${SRCTOP}/tools/install.sh"
+	INSTALL="sh ${SRCTOP}/tools/install.sh" \
+	PATH=${LEGACY_TOOLS}/usr/sbin:${LEGACY_TOOLS}/usr/bin:${LEGACY_TOOLS}/bin:${PATH}
 
 .if !defined(OSRELDATE)
 ord_h= /usr/include/osreldate.h



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