From: Karen Etheridge Date: Sun, 26 Apr 2020 17:49:57 +0000 (-0700) Subject: dump the args sent to WriteMakefile() X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b7c1523d6ace85ed8ed0ede367e4ccb227fb2318;p=p5sagit%2FDevel-Declare.git dump the args sent to WriteMakefile() --- diff --git a/Makefile.PL b/Makefile.PL index 5a5913d..05017f8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -17,6 +17,10 @@ my %TEST_DEPS = ( # have to do this since old EUMM dev releases miss the eval $VERSION line my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 }; +use Data::Dumper; +local $Data::Dumper::Sortkeys = 1; +print STDERR "------------- calling WriteMakefile(): ExUtils::Depends get_makefile_vars says ", Dumper({ $pkg->get_makefile_vars }); + WriteMakefile( NAME => 'Devel::Declare', AUTHOR => 'Matt S Trout - - original author',