From: Vincent Pit Date: Sun, 4 Oct 2009 09:18:03 +0000 (+0200) Subject: Re-indent WriteMakefile() arguments X-Git-Tag: v0.07~30 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=commitdiff_plain;h=edfd59020168422fe2c1baa014f0925968a77c9a Re-indent WriteMakefile() arguments --- diff --git a/Makefile.PL b/Makefile.PL index 54b937d..bbe18c2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -44,21 +44,21 @@ my %META = ( ); WriteMakefile( - NAME => $name, - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/App/Rgit.pm', - ABSTRACT => 'Recursively execute a command on all the git repositories in a directory tree.', - PL_FILES => { }, - EXE_FILES => [ 'bin/rgit' ], - PREREQ_PM => \%PREREQ_PM, - MIN_PERL_VERSION => 5.008, - META_MERGE => \%META, - dist => { - PREOP => 'pod2text bin/rgit > $(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 => 'lib/App/Rgit.pm', + ABSTRACT => 'Recursively execute a command on all the git repositories in a directory tree.', + PL_FILES => { }, + EXE_FILES => [ 'bin/rgit' ], + PREREQ_PM => \%PREREQ_PM, + MIN_PERL_VERSION => 5.008, + META_MERGE => \%META, + dist => { + PREOP => 'pod2text bin/rgit > $(DISTVNAME)/README', + COMPRESS => 'gzip -9f', SUFFIX => 'gz' + }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" + } );