From: Vincent Pit Date: Sun, 4 Oct 2009 09:18:03 +0000 (+0200) Subject: Re-indent WriteMakefile() arguments X-Git-Tag: v0.07~28 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScalar-Vec-Util.git;a=commitdiff_plain;h=6bd2911cc83d8c85647b93638da8577ee3bd3987 Re-indent WriteMakefile() arguments --- diff --git a/Makefile.PL b/Makefile.PL index e8daeef..3dbfaa2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -108,24 +108,24 @@ my %META = ( ); WriteMakefile( - NAME => $name, - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => $file, - ABSTRACT_FROM => $file, - PL_FILES => {}, - C => \@C, - @DEFINES, - PREREQ_PM => \%PREREQ_PM, - MIN_PERL_VERSION => 5.006, - 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 => {}, + C => \@C, + @DEFINES, + PREREQ_PM => \%PREREQ_PM, + MIN_PERL_VERSION => 5.006, + 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" + }, ); 1;