Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Jul 2016 15:22:21 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r303337 - stable/11
Message-ID:  <201607261522.u6QFMLlr011475@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Tue Jul 26 15:22:21 2016
New Revision: 303337
URL: https://svnweb.freebsd.org/changeset/base/303337

Log:
  MFC r303034: Include makewhatis in ITOOLS when MK_MAN_UTILS is true
  
  Previously it was conditional on MK_MAN. It's possible to build
  FreeBSD with man pages but without man page tools. MK_MAN_UTILS
  is the conditional used in share/man/Makefile for determining whether
  makewhatis is executed at install time, so it is the proper one for
  ITOOLS as well.
  
  PR:		210142
  Approved by:	re (gjb)

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

Modified: stable/11/Makefile.inc1
==============================================================================
--- stable/11/Makefile.inc1	Tue Jul 26 14:12:11 2016	(r303336)
+++ stable/11/Makefile.inc1	Tue Jul 26 15:22:21 2016	(r303337)
@@ -884,7 +884,7 @@ ITOOLS=	[ awk cap_mkdb cat chflags chmod
 	${LOCAL_ITOOLS}
 
 # Needed for share/man
-.if ${MK_MAN} != "no"
+.if ${MK_MAN_UTILS} != "no"
 ITOOLS+=makewhatis
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607261522.u6QFMLlr011475>