Skip Menu |

This queue is for tickets about the WSO2-WSF-Perl CPAN distribution.

Report information
The Basics
Id: 120126
Status: new
Priority: 0/
Queue: WSO2-WSF-Perl

People
Owner: Nobody in particular
Requestors: me [...] eboxr.com
Cc:
AdminCc:

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



Subject: Makefile.PL is using defined(@ARGV) instead of scalar
Makefile.PL is using defined instead of scalar, resulting in an error Can't use 'defined(@array)' (Maybe you should just omit the defined()?) at Makefile.PL line 40. - if ( defined @ARGV ) { + if ( scalar @ARGV ) {
On Mon Feb 06 17:51:15 2017, atoomic wrote: Show quoted text
> Makefile.PL is using defined instead of scalar, resulting in an error > > Can't use 'defined(@array)' (Maybe you should just omit the > defined()?) at Makefile.PL line 40. > > - if ( defined @ARGV ) { > + if ( scalar @ARGV ) {
or maybe simply remove the if statement as the if iss true