Hello. I have found out that file /usr/src/Makefile.inc1 contains following # Needed for share/man .if ${MK_MAN} != "no" ITOOLS+=makewhatis .endif I have settings in /etc/src.conf: #WITHOUT_MAN=YES WITHOUT_MAN_UTILS=YES which should build man pages but skip man utils (I use mandoc from ports) but building release iso fails, requiring makewhatis file, I suppose it should be set as: # Needed for share/man .if ${MK_MAN_UTILS} != "no" ITOOLS+=makewhatis .endif Regards
In my case building fails saying makewhatis binary couldn't been found in the path.
A commit references this bug: Author: emaste Date: Tue Jul 19 18:05:26 UTC 2016 New revision: 303034 URL: https://svnweb.freebsd.org/changeset/base/303034 Log: 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 Changes: head/Makefile.inc1
A commit references this bug: Author: emaste Date: Tue Jul 26 15:22:21 UTC 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) Changes: _U stable/11/ stable/11/Makefile.inc1
Already committed and MFCed.