Since adding custom parameters to Makefile.PL scripts is not
transparently supported by MakeMaker, recent versions print a
note about unknown options given to the script.
Nevertheless, such parameters are handled correctly and are
passed through to a reinvocation in case of a changed Makefile.PL.
A message is printed to inform the user about this fact.
Signed-off-by: Philipp A. Hartmann <philipp.hartmann@offis.de>
my $TAR_PROGRAM = $args{TAR_PROGRAM} || "" ;
my $XDELTA_PROGRAM = $args{XDELTA_PROGRAM} || "" ;
+if ($PERL_SHEBANG || $TAR_PROGRAM || $XDELTA_PROGRAM) {
+ print <<EOF;
+Info: MakeMaker may warn about the custom parameters 'PERL_SHEBANG',
+ 'TAR_PROGRAM', and 'XDELTA_PROGRAM', which are anyway correctly
+ handled for generating the Makefile.
+EOF
+}
+
package MY;
sub macro {