From be5f5f703817335ed74eaf9b5714518c14595eae Mon Sep 17 00:00:00 2001 From: bapt Date: Fri, 2 Jan 2015 23:13:04 +0000 Subject: [PATCH] install-info is also needed for installworld so add it to the bootstrap tools Add BPATH to the installworld path to ensure using installworld works if install-info is not in base git-svn-id: svn://svn.freebsd.org/base/stable/10@276594 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- Makefile.inc1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index c23d9c167..b6a3f03f6 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -815,6 +815,7 @@ MTREE_MAGIC?= mtree 2.0 distributeworld installworld: _installcheck_world mkdir -p ${INSTALLTMP} + export PATH=${BPATH}:${PATH} ; \ progs=$$(for prog in ${ITOOLS}; do \ if progpath=`which $$prog`; then \ echo $$progpath; \ @@ -1313,7 +1314,8 @@ _kerberos5_bootstrap_tools= \ .if ${_BOOTSTRAP_MAKEINFO} != "no" _texinfo= gnu/usr.bin/texinfo/libtxi \ - gnu/usr.bin/texinfo/makeinfo + gnu/usr.bin/texinfo/makeinfo \ + gnu/usr.bin/texinfo/install-info .endif # Please document (add comment) why something is in 'bootstrap-tools'. # Try to bound the building of the bootstrap-tool to just the -- 2.45.0