explain what the extra args are used for
Karen Etheridge [Tue, 16 Jul 2013 19:18:33 +0000 (12:18 -0700)]
lib/Distar.pm

index e4f2628..1083d40 100644 (file)
@@ -106,7 +106,11 @@ END
     if (open my $fh, '<', 'maint/Makefile.include') {
         $post .= do { local $/; <$fh> };
     }
+
+    # add on any extra args that WriteMakefile chose to pass us
+    # (note that Devel::Declare, and possibly others, use this)
     $post .= "\n" . join('', %extra) if keys %extra;
+
     return $post;
 }