Skip Menu |

This queue is for tickets about the App-EUMM-Upgrade CPAN distribution.

Report information
The Basics
Id: 54858
Status: open
Priority: 0/
Queue: App-EUMM-Upgrade

People
Owner: Nobody in particular
Requestors: adamk [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.22
Fixed in: (no value)



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(...); }
This might also have the side-effect of making it easier to rerun the conversion process again, to pick up new improvements and the like.