NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
--install_base (Score:2)
I think that
perl Build.PL --install-base /var/lookie/hereis what you want. Give it a try!--David
Re:--install_base (Score:2)
Re:--install_base (Score:2)
Re:--install_base (Score:2)
Re:--install_base (Score:2)
Re:--install_base (Score:2)
So does PREFIX. The heuristics of how PREFIX works drifts from version to version of MakeMaker especially between 5.x and 6.x. Part of the problem is nobody can really quite agree on how it should work. The other part is its attempts to make the PREFIX layout match the system layout. Fix one thing, break another. For the longest time modules installed on Debian came out funny because they put things in /usr/share. I've tried to get a handle on it but its like trying to eat jello with a fork. Its really quite insane.
I'd love to see Module::Build's Makefile.PL handle PREFIX but its quite a bit harder than you think. Times two. About the only thing that could be done is to somehow pull the logic out of ExtUtils::MM_Unix->init_INSTALL and make it a function of ExtUtils::Install or something so Module::Build and ExtUtils::MakeMaker can share the same code. Good luck.
Reply to This
Parent