svn commit: r265453 - head

Warner Losh imp at FreeBSD.org
Tue May 6 15:44:48 UTC 2014


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
 


More information about the svn-src-all mailing list