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 ) {