summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-04-10 04:03:48 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-04-10 04:03:48 +0000
commit1da2899b25b80b668761486331f7dffeeea2be83 (patch)
treed32ba6b1ab49ac1293563544f83e3fafe2355410 /lib
parent411de0ab94395b13eadb749c6b04762dba6cc346 (diff)
downloadperl-1da2899b25b80b668761486331f7dffeeea2be83.tar.gz
In case someone is using UTF-8 locales.
p4raw-id: //depot/perl@19175
Diffstat (limited to 'lib')
-rw-r--r--lib/ExtUtils/MM_MacOS.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ExtUtils/MM_MacOS.pm b/lib/ExtUtils/MM_MacOS.pm
index 4c43d2461e..9a2fa448fc 100644
--- a/lib/ExtUtils/MM_MacOS.pm
+++ b/lib/ExtUtils/MM_MacOS.pm
@@ -278,6 +278,7 @@ Translate Unix filepaths and shell globs to Mac style.
sub patternify {
my($unix) = @_;
my(@mac);
+ use bytes; # Non-UTF-8 high bytes in the below.
foreach (split(/[ \t\n]+/, $unix)) {
if (m|/|) {