aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2016-07-19 18:05:25 +0000
committerEd Maste <emaste@FreeBSD.org>2016-07-19 18:05:25 +0000
commitfe50ba058318368454ffcb705db5cdaa24302ae8 (patch)
tree03e29a7b41974b3648597f9be4d0389d4669940f /Makefile.inc1
parentdf9330b50cfce370d4c26100a3b12620bce8fa56 (diff)
downloadsrc-fe50ba058318368454ffcb705db5cdaa24302ae8.tar.gz
src-fe50ba058318368454ffcb705db5cdaa24302ae8.zip
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
Notes
Notes: svn path=/head/; revision=303034
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc12
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 7efa2437474d..e20ee3b816fc 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