From owner-freebsd-bugs@FreeBSD.ORG Tue Mar 30 17:50:04 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D69B01065673 for ; Tue, 30 Mar 2010 17:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C203C8FC19 for ; Tue, 30 Mar 2010 17:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o2UHo40P083099 for ; Tue, 30 Mar 2010 17:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o2UHo44t083098; Tue, 30 Mar 2010 17:50:04 GMT (envelope-from gnats) Date: Tue, 30 Mar 2010 17:50:04 GMT Message-Id: <201003301750.o2UHo44t083098@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Alexander Sack Cc: Subject: Re: misc/145212: Feature Request: Be able to build FreeBSD with man utilities but not with man pages X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Sack List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Mar 2010 17:50:04 -0000 The following reply was made to PR misc/145212; it has been noted by GNATS. From: Alexander Sack To: bug-followup@FreeBSD.org, asack@niksun.com Cc: Subject: Re: misc/145212: Feature Request: Be able to build FreeBSD with man utilities but not with man pages Date: Tue, 30 Mar 2010 13:41:34 -0400 I'd like to mention also that manctl is not tuned by any of the MK_* knobs so with the advent of MK_MAN_UTILS perhaps something like this should also be part of the patch: Index: usr.sbin/Makefile =================================================================== RCS file: /home/ncvs/src/usr.sbin/Makefile,v retrieving revision 1.421 diff -u -r1.421 Makefile --- usr.sbin/Makefile 4 Mar 2010 20:31:49 -0000 1.421 +++ usr.sbin/Makefile 30 Mar 2010 17:30:27 -0000 @@ -91,7 +91,7 @@ mailwrapper \ makefs \ ${_makemap} \ - manctl \ + ${_manctl} \ memcontrol \ mergemaster \ mfiutil \ @@ -322,6 +322,10 @@ _lpr= lpr .endif +.if ${MK_MAN_UTILS} != "no" +_manctl= manctl +.endif + .if ${MK_NETGRAPH} != "no" _flowctl= flowctl _lmcconfig= lmcconfig Another thing my patch DOES NOT address is the mtree hierarchy which I am indifferent about. I believe as its set up, we should leave the mtree stuff alone (just not populate any man pages in them). Thanks! -aps