[Bug 210142] makewhatis binary is requerd for building release even with WITHOUT_MAN_UTILS=YES

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Wed Jun 8 14:23:09 UTC 2016


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210142

            Bug ID: 210142
           Summary: makewhatis binary is requerd for building release even
                    with WITHOUT_MAN_UTILS=YES
           Product: Base System
           Version: 11.0-CURRENT
          Hardware: amd64
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: conf
          Assignee: freebsd-bugs at FreeBSD.org
          Reporter: kpect at protonmail.com
                CC: freebsd-amd64 at FreeBSD.org
                CC: freebsd-amd64 at FreeBSD.org

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the freebsd-amd64 mailing list