Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 08 Jun 2016 14:23:09 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 210142] makewhatis binary is requerd for building release even with WITHOUT_MAN_UTILS=YES
Message-ID:  <bug-210142-8@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help

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@FreeBSD.org
          Reporter: kpect@protonmail.com
                CC: freebsd-amd64@FreeBSD.org
                CC: freebsd-amd64@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 the assignee for the bug.


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