Re: Injecting custom code to the make install process?

2005-12-04 Thread Marcel Holan
On Sat, Dec 03, 2005 at 03:13:36PM +, Nick Ing-Simmons wrote: Or you could override install sub, call original and add your Makefile fragment: package MY; sub install { my $self = shift; my $str = $self-MM::install(@_); $str .= MyStuff; ... MyStuff return $str; } Thanks

Re: Injecting custom code to the make install process?

2005-12-03 Thread Nick Ing-Simmons
Marcel Holan [EMAIL PROTECTED] writes: Hi MM-Team, hi Michael, I'm trying to make a nice CPAN-package called Goo (see http://thegoo.org) and have serious problems using ExtUtils::MakeMaker (MM). Now the problems may very well result from my inexperience with MM, as I never needed anything more