Subject: | Makefile.PL does not accept PREFIX argument |
This occurs in Graph-0.50 with Perl v5.8.0 built for i386-linux-thread-multi
on 2.4.20-31.9.progeny.5smp #1 SMP Tue Aug 10 01:31:24 EDT 2004 i686 i686 i386 GNU/Linux
Here's a transcript of the bug...
bash-2.05$ perl Makefile.PL PREFIX=/home/mre2007/ipmt
Makefile.PL: Usage: Makefile.PL [--renum]
This is the only perl module I've seen that didn't support this, so I'm gussing it is a bug. The offending code is this check in Makefile.PL, and below is my workaround:
bash-2.05$ diff Makefile.PL ../Makefile.PL
10c10
< unless (GetOptions('renumber' => \$renum) && @ARGV == 0);
---
Show quoted text
> unless (GetOptions('renumber' => \$renum));