You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by st...@apache.org on 2004/12/24 22:21:16 UTC

svn commit: r123301 - /httpd/test/trunk/perl-framework/Apache-Test/Changes /httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL

Author: stas
Date: Fri Dec 24 13:21:15 2004
New Revision: 123301

URL: http://svn.apache.org/viewcvs?view=rev&rev=123301
Log:
Apache-Test/META.yml is excluded from mp2 distro to make PAUSE indexer
happy, but then perl Makefile.PL complains about a missing META.yml,
so autogenerate it if it wasn't in the distro

Modified:
   httpd/test/trunk/perl-framework/Apache-Test/Changes
   httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL

Modified: httpd/test/trunk/perl-framework/Apache-Test/Changes
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Changes?view=diff&rev=123301&p1=httpd/test/trunk/perl-framework/Apache-Test/Changes&r1=123300&p2=httpd/test/trunk/perl-framework/Apache-Test/Changes&r2=123301
==============================================================================
--- httpd/test/trunk/perl-framework/Apache-Test/Changes	(original)
+++ httpd/test/trunk/perl-framework/Apache-Test/Changes	Fri Dec 24 13:21:15 2004
@@ -7,7 +7,13 @@
 =over 3
 
 =item 1.19-dev
-  
+
+Apache-Test/META.yml is excluded from mp2 distro to make PAUSE indexer
+happy, but then perl Makefile.PL complains about a missing META.yml,
+so autogenerate it if it wasn't in the distro [Stas]
+
+
+
 =item 1.18 - December 23, 2004
 
 fix a bug in A-T config generation, when a vhost entry was in

Modified: httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL?view=diff&rev=123301&p1=httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL&r1=123300&p2=httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL&r2=123301
==============================================================================
--- httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL	(original)
+++ httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL	Fri Dec 24 13:21:15 2004
@@ -61,11 +61,16 @@
     'Cwd'        => '2.06',
 );
 
+# Apache-Test/META.yml is excluded from mp2 distro to make PAUSE
+# indexer happy, but then perl Makefile.PL complains about a missing
+# META.yml, so autogenerate it if it wasn't in the distro
+my $no_meta = TOP_LEVEL ? 1 : 0;
+
 WriteMakefile(
     NAME      => 'Apache::Test',
     VERSION   => $VERSION,
     PREREQ_PM => \%prereq,
-    NO_META   => 1,
+    NO_META   => $no_meta,
     dist      => {
         COMPRESS => 'gzip -9f', SUFFIX => 'gz',
     },