Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@www.apache.org Received: (qmail 35843 invoked from network); 21 Sep 2004 18:08:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 21 Sep 2004 18:08:22 -0000 Received: (qmail 66919 invoked by uid 500); 21 Sep 2004 18:08:22 -0000 Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 66851 invoked by uid 500); 21 Sep 2004 18:08:21 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@perl.apache.org Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 66838 invoked by uid 500); 21 Sep 2004 18:08:21 -0000 Delivered-To: apmail-modperl-2.0-cvs@apache.org X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 21 Sep 2004 18:08:20 -0000 Message-ID: <20040921180820.35813.qmail@minotaur.apache.org> From: gozer@apache.org To: modperl-2.0-cvs@apache.org Subject: cvs commit: modperl-2.0/lib/Apache Build.pm X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N gozer 2004/09/21 11:08:19 Modified: lib/Apache Build.pm Log: Using Apache::TestMM::Argv to propagate arguments to t/TEST was not the ideal way, just make sure to set httpd in BuildConfig.pm instead Revision Changes Path 1.184 +1 -1 modperl-2.0/lib/Apache/Build.pm Index: Build.pm =================================================================== RCS file: /home/cvs/modperl-2.0/lib/Apache/Build.pm,v retrieving revision 1.183 retrieving revision 1.184 diff -u -r1.183 -r1.184 --- Build.pm 21 Sep 2004 07:46:22 -0000 1.183 +++ Build.pm 21 Sep 2004 18:08:19 -0000 1.184 @@ -268,7 +268,7 @@ debug "Configuring httpd in $self->{MP_AP_PREFIX}"; my $httpd = File::Spec->catfile($self->{MP_AP_PREFIX}, 'httpd'); - push @Apache::TestMM::Argv, ('httpd' => $httpd); + $self->{'httpd'} ||= $httpd; my $mplib = "$self->{MP_LIBNAME}$Config{lib_ext}"; my $mplibpath = catfile($self->{cwd}, qw(src modules perl), $mplib);