On Monday, June 16, 2003, at 01:58 PM, Stephen R. Wilcoxon wrote:
> It appears that there is a bug in Module::Build when perl was compiled
> in a
> user directory. It tries installing in
> ~user/lib/perl5/site_perl/5.6.1,
> but instead of installing in $HOME/lib/perl5/site_perl/5.6.1 (assuming
> running as user) it really installs in '~user' under the current
> directory.
This might be fixed in the latest Module::Build betas/CVS. It should
be using $Config{installsitelib} and the like, but in older versions it
uses $Config{sitelib} and the like. The former should have the path
already expanded.
You can self-patch in the install_map() method if you'd like to fix
your current version. Let me know if it doesn't work.
-Ken
|