Re: [Module-build-general] ANNOUNCE: Module::Build 0.19 released
Status: Beta
Brought to you by:
kwilliams
|
From: Ken W. <ke...@ma...> - 2003-07-10 14:10:55
|
On Thursday, July 10, 2003, at 07:09 AM, Mathieu Arnold wrote:
> I've tried about all possible combinaisons between
> perl Build.PL install_base=/my/test/path
> to
> perl Build.PL config=install_path=/my/test/path
> going through
> perl Build.PL install_path=install_path=/my/test/path (putting it once
> does
> not work)
> or
> perl Build.PL install_path=install_base=/my/test/path
Hi Mathieu,
There are docs about it in the "How Installation Paths are Determined"
section:
----------------------------------------------------------------------
=head3 install_path
Once the defaults have been set, you can override them. You can set
individual entries by using the C<install_path> parameter:
my $m = Module::Build->new
(...other options...,
install_path => {lib => '/foo/lib',
arch => '/foo/lib/arch'});
On the command line, that would look like this:
perl Build.PL install_path=lib=/foo/lib install_path=arch=/foo/lib/arch
or this:
Build install install_path=lib=/foo/lib install_path=arch=/foo/lib/arch
----------------------------------------------------------------------
BTW, the 'destdir' parameter isn't doing what you need?
-Ken
|