From: Abhijit Menon-Sen Date: Tue, 21 May 2002 02:47:18 +0000 (+0000) Subject: 1. Declare correct version for Test::More dependency. (Autrijus Tang) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=854b613d623c548289e41418f91592036c72b922;p=p5sagit%2Fp5-mst-13.2.git 1. Declare correct version for Test::More dependency. (Autrijus Tang) 2. Install in core library directory. (Tatsuhiko Miyagawa) p4raw-id: //depot/perl@16716 --- diff --git a/ext/Storable/Makefile.PL b/ext/Storable/Makefile.PL index a102ea3..abc3f2d 100644 --- a/ext/Storable/Makefile.PL +++ b/ext/Storable/Makefile.PL @@ -17,11 +17,11 @@ use ExtUtils::MakeMaker; use Config; WriteMakefile( - 'NAME' => 'Storable', - 'DISTNAME' => "Storable", - 'MAN3PODS' => {}, - PREREQ_PM => {'Test::More' => 0}, - 'VERSION_FROM' => 'Storable.pm', - 'dist' => { SUFFIX => 'gz', COMPRESS => 'gzip -f' }, + 'NAME' => 'Storable', + 'DISTNAME' => "Storable", + 'MAN3PODS' => {}, + PREREQ_PM => { 'Test::More' => '0.41' }, + INSTALLDIRS => 'perl', + 'VERSION_FROM' => 'Storable.pm', + 'dist' => { SUFFIX => 'gz', COMPRESS => 'gzip -f' }, ); -