summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAudrey Tang <cpan@audreyt.org>2002-05-20 12:10:31 +0800
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-19 23:52:45 +0000
commit52adf7dc63f8dcc2a6048039e370c3ddca899e4c (patch)
tree99f28b42524dcddba5926226e7ffd94adb5ffec3 /ext
parentb5d3f31f7e101c9ef1c84c388e7036ccb0b99518 (diff)
downloadperl-52adf7dc63f8dcc2a6048039e370c3ddca899e4c.tar.gz
Make Makefile_PL.e2x happy on MSWin32
Message-ID: <20020519201031.GA1603@not.autrijus.org> p4raw-id: //depot/perl@16700
Diffstat (limited to 'ext')
-rw-r--r--ext/Encode/Encode/Makefile_PL.e2x2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Encode/Encode/Makefile_PL.e2x b/ext/Encode/Encode/Makefile_PL.e2x
index 0e73823b42..a82e774d08 100644
--- a/ext/Encode/Encode/Makefile_PL.e2x
+++ b/ext/Encode/Encode/Makefile_PL.e2x
@@ -22,7 +22,7 @@ for my $d (@Config{qw/bin sitebin vendorbin/},
(split /$Config{path_sep}/o, $ENV{PATH})){
for my $f (qw/enc2xs enc2xs5.7.3/){
my $path = File::Spec->catfile($d, $f);
- -x $path and $enc2xs = $path and last PATHLOOP;
+ -r $path and $enc2xs = $path and last PATHLOOP;
}
}
$enc2xs or die "enc2xs not found!";