From owner-cvs-src@FreeBSD.ORG Thu Mar 9 15:38:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB01816A420; Thu, 9 Mar 2006 15:38:20 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB20943D5A; Thu, 9 Mar 2006 15:38:19 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout2.pacific.net.au (Postfix) with ESMTP id BED4C75E84; Fri, 10 Mar 2006 02:38:17 +1100 (EST) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id k29FcFcG013284; Fri, 10 Mar 2006 02:38:16 +1100 Date: Fri, 10 Mar 2006 02:38:14 +1100 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Garance A Drosehn In-Reply-To: <200603082228.k28MSDXJ050630@repoman.freebsd.org> Message-ID: <20060310020457.F24754@delplex.bde.org> References: <200603082228.k28MSDXJ050630@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/lpr/filters Makefile src/usr.sbin/lpr/filters.ru/koi2855 Makefile src/usr.sbin/lpr/filters.ru/koi2alt Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2006 15:38:21 -0000 On Wed, 8 Mar 2006, Garance A Drosehn wrote: > gad 2006-03-08 22:28:13 UTC > > FreeBSD src repository > > Modified files: > usr.sbin/lpr/filters Makefile > usr.sbin/lpr/filters.ru/koi2855 Makefile > usr.sbin/lpr/filters.ru/koi2alt Makefile > Log: > Switch these makefiles to use 'MAN=' to indicate they will not generate > a man page, instead of 'NO_MAN='. 'NO_MAN=' is something users would > set, not something a makefile should be using. > > Based on comments by: des NO_MAN is the standard knob. It is documented in mk/bsd.README. It can be used by either users or makefiles to turn off normal man page processing. It is used for this by src/Makefile.inc1 and could be used by makefiles generally in the same way (to make several passes). This commit quadruples the number of makefiles in /usr/src that use the nonstandard method MAN=. Previously there was only 1 (libgssapi/Makefile). Such makefiles even used to be outnumbered by ones which use NO_MAN with its correct spelling NOMAN (there are 4 of these). About 200 makefiles use the standard knob. NetBSD still uses mainly NOMAN= in makefiles. It never uses NO_MAN in makefiles, but uses MAN= in about 13. It only documents NOxxx in bsd.README, and says there that NOxxx is not intended for users. Perhaps NO_xxx should be for users and NOxxx for makefiles. Bruce