in reply to v in distro name
I'm not sure who those guys are, but I'm fairly certain they're not responsible :)
How do I get rid of the v in the distro name?
See Module::Build
or see ExtUtils::MakeMakermy $build = Module::Build->new( dist_name => 'Foo-Bar', dist_version => '1.04', ... );
With above parameters, both will create distdir Foo-Bar-1.04 and dist Foo-Bar-1.04.tar.gzWriteMakefile( DISTNAME => 'Foo-Bar', DISTVNAME => 'Foo-Bar-1.04', ... )
|
|---|