From: Vincent Pit Date: Sun, 4 Oct 2009 09:18:03 +0000 (+0200) Subject: Re-indent WriteMakefile() arguments X-Git-Tag: v0.20~12 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=fa4e8647e6ef975de34b783d7b8fe2644765a0f8 Re-indent WriteMakefile() arguments --- diff --git a/Makefile.PL b/Makefile.PL index 42b016a..39749fc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -48,21 +48,21 @@ my %META = ( ); WriteMakefile( - NAME => $name, - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => $file, - ABSTRACT_FROM => $file, - PL_FILES => {}, - @DEFINES, - PREREQ_PM => \%PREREQ_PM, - MIN_PERL_VERSION => 5.008, - 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 ', + LICENSE => 'perl', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, + PL_FILES => {}, + @DEFINES, + PREREQ_PM => \%PREREQ_PM, + MIN_PERL_VERSION => 5.008, + 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" + }, );