From: Vincent Pit <vince@profvince.com>
Date: Sun, 4 Oct 2009 09:18:03 +0000 (+0200)
Subject: Re-indent WriteMakefile() arguments
X-Git-Tag: v0.03~19
X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=2ed6f5536fe2fb36513a5b953a8dd5a9000d5a92;p=perl%2Fmodules%2Fwith.git

Re-indent WriteMakefile() arguments
---

diff --git a/Makefile.PL b/Makefile.PL
index 66203b0..09736d2 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -38,20 +38,20 @@ my %META = (
 );
 
 WriteMakefile(
-    NAME             => $name,
-    AUTHOR           => 'Vincent Pit <perl@profvince.com>',
-    LICENSE          => 'perl',
-    VERSION_FROM     => $file,
-    ABSTRACT_FROM    => $file,
-    PL_FILES         => {},
-    PREREQ_PM        => \%PREREQ_PM,
-    MIN_PERL_VERSION => 5.009004,
-    META_MERGE       => \%META,
-    dist             => {
-        PREOP    => "pod2text $file > \$(DISTVNAME)/README",
-        COMPRESS => 'gzip -9f', SUFFIX => 'gz'
-    },
-    clean            => {
-        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
-    },
+ NAME             => $name,
+ AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+ LICENSE          => 'perl',
+ VERSION_FROM     => $file,
+ ABSTRACT_FROM    => $file,
+ PL_FILES         => {},
+ PREREQ_PM        => \%PREREQ_PM,
+ MIN_PERL_VERSION => 5.009004,
+ META_MERGE       => \%META,
+ dist             => {
+  PREOP    => "pod2text $file > \$(DISTVNAME)/README",
+  COMPRESS => 'gzip -9f', SUFFIX => 'gz'
+ },
+ clean            => {
+  FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
+ },
 );