From owner-freebsd-ports@FreeBSD.ORG Thu Feb 5 15:52:52 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA0C216A4CE for ; Thu, 5 Feb 2004 15:52:52 -0800 (PST) Received: from postman.arcor.de (postman4.arcor-online.net [151.189.0.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBA8643D45 for ; Thu, 5 Feb 2004 15:52:50 -0800 (PST) (envelope-from eikemeier@fillmore-labs.com) Received: from fillmore.dyndns.org (port-212-202-51-21.reverse.qsc.de [212.202.51.21]) (authenticated bits=0)i15NqmUa007350 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 6 Feb 2004 00:52:48 +0100 (MET) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.30; FreeBSD) id 1AotId-0003FH-U8; Fri, 06 Feb 2004 00:52:47 +0100 Message-ID: <4022D750.1040803@fillmore-labs.com> Date: Fri, 06 Feb 2004 00:52:48 +0100 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Gerald Pfeifer References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@freebsd.org Subject: Re: make versus _MANPAGE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Feb 2004 23:52:52 -0000 Gerald Pfeifer wrote: [...] > I am currently fighting a very nasty problem where a construct involving > .for in a Makefile works as expected, depending on whether I use it before > .include or after. [...] .for evaluates its arguments immediately, not delayed. _MANPAGES is defined in bsd.port.pre.mk, so it is only defined *afterwards*. Works as advertised. **Be aware that nobody guarantees you that _MANPAGES is available after bsd.port.pre.mk** Changes in bsd.port.mk may break your code without further notice. -Oliver