svn commit: r275622 - head

Garrett Cooper ngie at FreeBSD.org
Mon Dec 8 18:29:21 UTC 2014


Author: ngie
Date: Mon Dec  8 18:29:20 2014
New Revision: 275622
URL: https://svnweb.freebsd.org/changeset/base/275622

Log:
  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
  MFC after: 1 week

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Mon Dec  8 17:14:01 2014	(r275621)
+++ head/Makefile.inc1	Mon Dec  8 18:29:20 2014	(r275622)
@@ -791,6 +791,11 @@ ITOOLS=	[ awk cap_mkdb cat chflags chmod
 	rm sed services_mkdb 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