svn commit: r276051 - stable/10

Garrett Cooper ngie at FreeBSD.org
Mon Dec 22 02:22:02 UTC 2014


Author: ngie
Date: Mon Dec 22 02:22:01 2014
New Revision: 276051
URL: https://svnweb.freebsd.org/changeset/base/276051

Log:
  MFC r275622:
  
    Add makewhatis to ITOOLS if MK_MAN != no
  
    This will fix installation with differing host targets in installworld, so
    one can build i386/i386 on an amd64 host, then install to an i386/i386 target
  
    Reported by: alfred
    Phabric: D1280

Modified:
  stable/10/Makefile.inc1
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/Makefile.inc1
==============================================================================
--- stable/10/Makefile.inc1	Mon Dec 22 00:50:08 2014	(r276050)
+++ stable/10/Makefile.inc1	Mon Dec 22 02:22:01 2014	(r276051)
@@ -782,6 +782,11 @@ ITOOLS=	[ awk cap_mkdb cat chflags chmod
 	rm sed sh sysctl test true uname wc ${_zoneinfo} \
 	${LOCAL_ITOOLS}
 
+# Needed for share/man
+.if ${MK_MAN} != "no"
+ITOOLS+=makewhatis
+.endif
+
 #
 # distributeworld
 #


More information about the svn-src-all mailing list