From: Karen Etheridge Date: Sun, 6 Oct 2013 16:28:18 +0000 (-0700) Subject: only add metadata if there isn't already a META.* to work with X-Git-Tag: v1.000019~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FModule-Metadata.git;a=commitdiff_plain;h=f0839c2d096c473048cdb0cb9807c58d6f3669a3 only add metadata if there isn't already a META.* to work with --- diff --git a/Makefile.PL b/Makefile.PL index ab57117..c23491f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -28,6 +28,7 @@ WriteMakefile( : () , }, + -f 'META.yml' ? () : ( META_MERGE => { 'meta-spec' => { version => 2 }, dynamic_config => 0, @@ -61,5 +62,5 @@ WriteMakefile( }, }, }, - }, + } ), );