From owner-freebsd-current@FreeBSD.ORG Thu Jul 27 13:16:47 2006 Return-Path: X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8E3316A4E7 for ; Thu, 27 Jul 2006 13:16:47 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7ADE43D6B for ; Thu, 27 Jul 2006 13:16:46 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k6RDGiF9004238 for ; Thu, 27 Jul 2006 17:16:44 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k6RDGits004233 for current@freebsd.org; Thu, 27 Jul 2006 17:16:44 +0400 (MSD) (envelope-from yar) Date: Thu, 27 Jul 2006 17:16:43 +0400 From: Yar Tikhiy To: current@freebsd.org Message-ID: <20060727131643.GA3298@comp.chem.msu.su> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i Cc: Subject: JFYI: NO_MAN and X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jul 2006 13:16:47 -0000 Hi folks, This doesn't seem documented, so I'd like to tell what I found. (Any ideas where to document this?) NO_MAN is handled by now, which has a consequence. If a Makefile sets NO_MAN and includes , it should do the former before the latter; NO_MAN would have no effect otherwise. E.g.: # $FreeBSD$ PROG= mumble NO_MAN= .include .if ${MK_FOO_SUPPORT} != "no" CFLAGS+= -DFOO .endif .include -- Yar