From: Karen Etheridge Date: Tue, 21 Jun 2016 02:36:06 +0000 (-0700) Subject: avoid overwriting PERL_MM_OPT X-Git-Tag: v0.16~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=353380ef09f4ed81c8a03cce2276183378834eac;p=p5sagit%2FSub-Name.git avoid overwriting PERL_MM_OPT --- diff --git a/Makefile.PL b/Makefile.PL index 5ddd340..f0b01bc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,11 +3,10 @@ use warnings; use lib 'inc'; use ExtUtils::MakeMaker::Dist::Zilla::Develop; -$ENV{PERL_MM_OPT} = 'NORECURS=1'; - WriteMakefile( NAME => 'Sub::Name', VERSION_FROM => 'lib/Sub/Name.pm', INSTALLMAN1DIR => 'none', INSTALLMAN3DIR => 'none', + NORECURS => 1, );