From: Abhijit Menon-Sen Date: Tue, 21 May 2002 05:02:01 +0000 (+0000) Subject: Why quote some keys? X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=527f7b6445e4f57394941ac46989a0dc9efbd587;p=p5sagit%2Fp5-mst-13.2.git Why quote some keys? p4raw-id: //depot/perl@16719 --- diff --git a/ext/Storable/Makefile.PL b/ext/Storable/Makefile.PL index abc3f2d..6b43879 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' => {}, + NAME => 'Storable', + DISTNAME => "Storable", + MAN3PODS => {}, PREREQ_PM => { 'Test::More' => '0.41' }, INSTALLDIRS => 'perl', - 'VERSION_FROM' => 'Storable.pm', - 'dist' => { SUFFIX => 'gz', COMPRESS => 'gzip -f' }, + VERSION_FROM => 'Storable.pm', + dist => { SUFFIX => 'gz', COMPRESS => 'gzip -f' }, );