Add vendor paths
Let `vendorprefix=/usr/local` so `vendorlib` and `vendorarch` can point to paths in `/usr/local/lib/perl5/vendor_perl`. Extend the generator.pl also so we can add more `Configure` settings if we needed it later. Fixes #32.
This commit is contained in:
parent
a6c1e7349c
commit
78ff90a848
1 changed files with 7 additions and 2 deletions
|
@ -36,9 +36,14 @@ my $template = do {
|
|||
<DATA>;
|
||||
};
|
||||
|
||||
my $common = join " ", qw{
|
||||
-Duseshrplib
|
||||
-Dvendorprefix=/usr/local
|
||||
};
|
||||
|
||||
my %builds = (
|
||||
"64bit" => "-Duse64bitall -Duseshrplib",
|
||||
"64bit,threaded" => "-Dusethreads -Duse64bitall -Duseshrplib",
|
||||
"64bit" => "-Duse64bitall $common",
|
||||
"64bit,threaded" => "-Dusethreads -Duse64bitall $common",
|
||||
);
|
||||
|
||||
die_with_sample unless defined $yaml->{releases};
|
||||
|
|
Loading…
Add table
Reference in a new issue