summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2015-11-23 10:37:47 +1100
committerTony Cook <tony@develop-help.com>2015-11-23 10:37:47 +1100
commit8f8d807bf58b98d89584dfa59055ff3313e3b961 (patch)
treed5f013a4eb82b8c2c90619745627c25cb572769b /make_ext.pl
parent96b68701e4c05574c9bcf792d65d088aa17da2a0 (diff)
downloadperl-8f8d807bf58b98d89584dfa59055ff3313e3b961.tar.gz
make_ext.pl: fix operator precedence error from b4c079ca5
Diffstat (limited to 'make_ext.pl')
-rw-r--r--make_ext.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl
index 223f67e6bf..0745049556 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -616,7 +616,7 @@ sub just_pm_to_blib {
my ($first) = $mname =~ /^([^:]+)/;
my $pm_to_blib = IS_VMS ? 'pm_to_blib.ts' : 'pm_to_blib';
- my $silent = defined $ENV{MAKEFLAGS} and $ENV{MAKEFLAGS} =~ /\b(s|silent|quiet)\b/;
+ my $silent = defined $ENV{MAKEFLAGS} && $ENV{MAKEFLAGS} =~ /\b(s|silent|quiet)\b/;
foreach my $leaf (<*>) {
if (-d $leaf) {