From: Nicholas Clark Date: Wed, 4 May 2011 20:41:00 +0000 (+0200) Subject: Re-indent Makefile.PL consistently. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Size.git;a=commitdiff_plain;h=390777e7ad4ebeb0e16129e43cb12361a4cd8d89 Re-indent Makefile.PL consistently. --- diff --git a/Makefile.PL b/Makefile.PL index 7e550ee..c17ab12 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,7 @@ use strict; use Config; (unpack "B*", pack "N", $Config{ptrsize}) =~ /^0+1(0+)$/ - or die "Your pointer size of $Config{ptrsize} is very confusing"; + or die "Your pointer size of $Config{ptrsize} is very confusing"; my $ptr_bits = length $1; my $svh = "$Config{archlibexp}/CORE/perl.h"; @@ -43,10 +43,10 @@ EOT close FH or die "Error closing $vtable_file: $!"; WriteMakefile( - NAME => 'Devel::Size', - VERSION_FROM => 'lib/Devel/Size.pm', - DEFINE => "-DALIGN_BITS=$ptr_bits", - ($ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()), - ($ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()), - realclean => {FILES=> $vtable_file}, + NAME => 'Devel::Size', + VERSION_FROM => 'lib/Devel/Size.pm', + DEFINE => "-DALIGN_BITS=$ptr_bits", + ($ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()), + ($ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()), + realclean => {FILES=> $vtable_file}, );