[Bioperl-guts-l] [Bioperl-l] Updated Makefile.PL
Erikjan
er at xs4all.nl
Sat Oct 21 12:59:11 EDT 2006
Hi,
Makefile.PL seems to have an omitted a slash MY::postamble, between cwd()
and $path:
=========================
#
# override MakeMaker methods
#
sub MY::postamble {
my $path = catfile('maintenance', 'symlink_scripts.pl');
$tline . "\n\n"
. "link_install ::\n\t\$(PERL) '".cwd().$path."'
'\$(INSTALLSITEBIN)'\n\n";
}
=========================
this fixes it for me (note the inserted "/"):
=========================
$tline . "\n\n"
. "link_install ::\n\t\$(PERL) '".cwd()."/".$path."'
'\$(INSTALLSITEBIN)'\n\n";
=========================
hth (and sorry if it was already reported :),
Eric
More information about the Bioperl-guts-l
mailing list