From owner-freebsd-questions@FreeBSD.ORG Wed Jan 12 23:43:13 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BB9F16A4CE for ; Wed, 12 Jan 2005 23:43:13 +0000 (GMT) Received: from idesigns.net (idesigns.net [209.239.38.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0DC043D48 for ; Wed, 12 Jan 2005 23:43:12 +0000 (GMT) (envelope-from software@schmittnet.com) Received: from [127.0.0.1] (ct-seymour2d-19.wtrbct.adelphia.net [68.71.172.19]) by idesigns.net (8.12.10/8.12.10) with ESMTP id j0CNh7AM018794; Wed, 12 Jan 2005 18:43:09 -0500 Message-ID: <41E5B61A.2080004@schmittnet.com> Date: Wed, 12 Jan 2005 18:43:22 -0500 From: "Bill Schmitt (SW)" User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Giorgos Keramidas References: <41E5B2AD.9000702@schmittnet.com> <20050112233440.GA15498@gothmog.gr> In-Reply-To: <20050112233440.GA15498@gothmog.gr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: questions@freebsd.org Subject: Re: Defining MAKE_ARGS in pkgtools.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 23:43:13 -0000 Giorgos Keramidas wrote: > On 2005-01-12 18:28, "Bill Schmitt (SW)" wrote: > >>So, in the pkgtools.conf file, I added: >> >>MAKE_ARGS = { >> 'deskutils/moregroupware' => 'WITH_APACHE2 WITH_MODULES' >>} >> >>But, when I execute portupgrade moregroupware, I receive a message that >>states: >> >>make: don't know how to make WITH_APACHE2. Stop > > > Try setting the make options to something... anything, it doesn't > matter. make(1) sees that the respective command-line arguments do not > contain an '=' character and assumes they are not make variables, but > targets to be made from the port source. For example, try this: > > MAKE_ARGS = { > 'deskutils/moregroupware' => 'WITH_APACHE2=yes WITH_MODULES=yes', > } > > This should work fine. > > > That seems to have done it. Thanks.