|
From: strk <st...@ke...> - 2007-11-30 20:35:45
|
On Fri, Nov 30, 2007 at 06:25:19PM +0100, peterdd wrote:
> The --prefix seems to be ignored for building the perl-ext the autostuff way.
> At least in perl_ext/Makefile.perl.
> So running 'make install' from ming root-dir it tries to install to /usr
> hierarchy.
>
> I found the prefix is set to default /usr there and when I change it to my
> wanted prefix and then run 'make install' in ming root it works the way I
> wanted it.
>
> Is there a good reason for this behavior?
No good reaon, just lack of Makefile.PL knowledge/entusiasm :)
> Autostuff guys?
Makefile.perl is generated from Makefile.PL
using this command (in Makefile.am rule):
Makefile.perl: Makefile.PL
srcdir=$(srcdir) builddir=$(abs_builddir) $(PERL) $< MAKEFILE=Makefile.perl
There's no explicit setting for install dir in Makefile.PL, I belive it all comes
from $(PERL) itself ...
perl guys ?
--strk;
|