Date: Tue, 6 May 2014 15:44:46 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r265453 - head Message-ID: <201405061544.s46Fik0h080968@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Tue May 6 15:44:46 2014 New Revision: 265453 URL: http://svnweb.freebsd.org/changeset/base/265453 Log: No need to install man pages for bootstrapping new make. Some environments (that I can't reproduce locally, but that others have reported) seem to get tripped up by this man page install. There's really no need to do it, so turn off the man pages using the most portable method. We can't just directly set MK_MAN=no here because we're bootstrapping in the host environment and such a setting was forbidden until very recently. NO_MAN= can produce a warning, but for now the warning is benign. Modified: head/Makefile Modified: head/Makefile ============================================================================== --- head/Makefile Tue May 6 15:44:41 2014 (r265452) +++ head/Makefile Tue May 6 15:44:46 2014 (r265453) @@ -347,7 +347,7 @@ make bmake: .PHONY ${MMAKE} obj && \ ${MMAKE} depend && \ ${MMAKE} all && \ - ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= + ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= NO_MAN=t tinderbox toolchains kernel-toolchains: upgrade_checks
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405061544.s46Fik0h080968>