Return-Path: Delivered-To: apmail-httpd-apreq-dev-archive@www.apache.org Received: (qmail 53910 invoked from network); 10 Jun 2004 18:59:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 10 Jun 2004 18:59:44 -0000 Received: (qmail 56069 invoked by uid 500); 10 Jun 2004 18:59:49 -0000 Delivered-To: apmail-httpd-apreq-dev-archive@httpd.apache.org Received: (qmail 55953 invoked by uid 500); 10 Jun 2004 18:59:48 -0000 Mailing-List: contact apreq-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list apreq-dev@httpd.apache.org Received: (qmail 55840 invoked by uid 99); 10 Jun 2004 18:59:47 -0000 Received: from [128.183.17.62] (HELO gamma.gsfc.nasa.gov) (128.183.17.62) by apache.org (qpsmtpd/0.27.1) with ESMTP; Thu, 10 Jun 2004 11:59:46 -0700 Received: from alderaan.gsfc.nasa.gov (alderaan.gsfc.nasa.gov [128.183.16.213]) by gamma.gsfc.nasa.gov (8.12.10/8.12.10) with ESMTP id i5AIxNQ8018453 for ; Thu, 10 Jun 2004 14:59:23 -0400 Received: from alderaan.gsfc.nasa.gov (localhost.localdomain [127.0.0.1]) by alderaan.gsfc.nasa.gov (8.12.10/8.12.9) with ESMTP id i5AIxNgh008549 for ; Thu, 10 Jun 2004 14:59:23 -0400 Received: (from sabol@localhost) by alderaan.gsfc.nasa.gov (8.12.10/8.12.10/Submit) id i5AIxNue008545; Thu, 10 Jun 2004 14:59:23 -0400 Date: Thu, 10 Jun 2004 14:59:23 -0400 Message-Id: <200406101859.i5AIxNue008545@alderaan.gsfc.nasa.gov> From: "Edward J. Sabol" To: apreq-dev@httpd.apache.org In-reply-to: <40C8A4AD.4050603@gneto.com> (message from Martin Nilsson on Thu, 10 Jun 2004 20:13:01 +0200) Subject: Re: 2.03-dev-rc1 available References: <877jufxyj3.fsf@gemini.sunstarsys.com> <40C88F91.90603@gneto.com> <87u0xjwdd7.fsf@gemini.sunstarsys.com> <40C8A4AD.4050603@gneto.com> X-Scanned-By: MIMEDefang 2.42 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Martin Nilsson wrote: > I have changed the following: > env/t/TEST.PL added these functions. > > sub cmodules_makefile_vars { > return < MAKE = gmake > EOF > } [...] > This seems to be a problem with Apache::Test not libapreq! I'm not a fan of Apache::Test's over-reliance on %Config either. (See previous e-mails from me regarding $Config{perlpath}.) Would the following work? sub cmodules_makefile_vars { my $make = $ENV{MAKE} || $Config{make}; return <