From owner-freebsd-questions@FreeBSD.ORG Wed Jan 12 23:34:49 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 1EB2016A4CE for ; Wed, 12 Jan 2005 23:34:49 +0000 (GMT) Received: from nic.ach.sch.gr (nic.sch.gr [194.63.238.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id E197B43D2F for ; Wed, 12 Jan 2005 23:34:46 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: (qmail 4583 invoked by uid 207); 12 Jan 2005 23:34:45 -0000 Received: from keramida@ceid.upatras.gr by nic by uid 201 with qmail-scanner-1.21 (sophie: 3.04/2.19/3.81. Clear:RC:1(81.186.70.202):. Processed in 1.023842 secs); 12 Jan 2005 23:34:45 -0000 Received: from dialup202.ach.sch.gr (HELO gothmog.gr) ([81.186.70.202]) (envelope-sender ) by nic.sch.gr (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 12 Jan 2005 23:34:43 -0000 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id j0CNYfvg022336; Thu, 13 Jan 2005 01:34:41 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id j0CNYepf022301; Thu, 13 Jan 2005 01:34:40 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 13 Jan 2005 01:34:40 +0200 From: Giorgos Keramidas To: "Bill Schmitt (SW)" Message-ID: <20050112233440.GA15498@gothmog.gr> References: <41E5B2AD.9000702@schmittnet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41E5B2AD.9000702@schmittnet.com> 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:34:49 -0000 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.