Subject: | Use a better naming pattern than the ugly WriteMakefile1 |
The current eumm-upgrade makes an ugly-named WriteMakefile1 to pass
through to, in the form.
use ExtUtils::MakeMaker;
WriteMakefile1(
# Previously existing WriteMakefile command
);
sub WriteMakefile1 {
# Cleanup code
WriteMakefile(...);
}
It would be far less messy to do something like this instead.
use ExtUtils::MakeMaker ();
WriteMakefile(
# Previously existing WriteMakefile command
);
sub WriteMakefile {
# Cleanup code
ExtUtils::MakeMaker::WriteMakefile(...);
}