jblakey has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
I've got a rather large in-house module tree that i've automated the building/packing/pushing-out of. Usually, to create a new module in perl 5.6, i use "h2xs -AXn This::Module::Name", and this directory structure gets created...
./This/Module/Name/
Now, in perl 5.8 and later, i've noticed h2xs produces a flatter structure:
./This-Module-Name/
Is there anyway to force the multi-level path creation in perl 5.8? I don't really want to have to redo all my module stuff just because of this change (although, i suppose i could write my own crappy h2xs-module-making-kinda-thingy as somewhat of a last resort). This is on Windows, by the way...
Thanks for listening,
jason
./This/Module/Name/
Now, in perl 5.8 and later, i've noticed h2xs produces a flatter structure:
./This-Module-Name/
Is there anyway to force the multi-level path creation in perl 5.8? I don't really want to have to redo all my module stuff just because of this change (although, i suppose i could write my own crappy h2xs-module-making-kinda-thingy as somewhat of a last resort). This is on Windows, by the way...
Thanks for listening,
jason
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Module Building 5.6 vs 5.8 or 5.10
by tachyon-II (Chaplain) on Jun 26, 2008 at 18:25 UTC | |
Re: Module Building 5.6 vs 5.8 or 5.10
by polettix (Vicar) on Jun 26, 2008 at 18:38 UTC | |
Re: Module Building 5.6 vs 5.8 or 5.10
by educated_foo (Vicar) on Jun 27, 2008 at 18:43 UTC | |
Re: Module Building 5.6 vs 5.8 or 5.10
by Anonymous Monk on Jun 27, 2008 at 04:40 UTC |
Back to
Seekers of Perl Wisdom