From fe50ba058318368454ffcb705db5cdaa24302ae8 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 19 Jul 2016 18:05:25 +0000 Subject: [PATCH] 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 MFC after: 1 week --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 7efa2437474..e20ee3b816f 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -884,7 +884,7 @@ ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ ${LOCAL_ITOOLS} # Needed for share/man -.if ${MK_MAN} != "no" +.if ${MK_MAN_UTILS} != "no" ITOOLS+=makewhatis .endif -- 2.45.0