Skip Menu |

This queue is for tickets about the Net-TCPwrappers CPAN distribution.

Report information
The Basics
Id: 95252
Status: open
Priority: 0/
Queue: Net-TCPwrappers

People
Owner: Nobody in particular
Requestors: TODDR [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.11
Fixed in: (no value)



Subject: use of Getopt::Long in Build.PL breaks args passed to Build.PL
If you make this change to Build.PL, arguements to Build.PL will work. -use Getopt::Long; +use Getopt::Long qw( GetOptions :config pass_through ); This was a problem when I was calling: perl Build.PL --destdir=/tmp/foo --installdirs=vendor Destdir was being ignored because of Getopt::Long corruption.
Plus, any libraries you use in Build.PL *must* be specified in metadata as prereqs => { configure => { requires => { ... } } }.