diff options
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index a9e7b9eb14..c18fd6ad25 100755 --- a/installperl +++ b/installperl @@ -113,7 +113,7 @@ close SCRIPTS; if ($scr_ext) { @scripts = map { "$_$scr_ext" } @scripts; } -my @pods = (<pod/*.pod>) unless $nopods; +my @pods = $nopods ? () : (<pod/*.pod>); # Specify here any .pm files that are actually architecture-dependent. # (Those included with XS extensions under ext/ are automatically |