From: Jarkko Hietaniemi Date: Thu, 10 Apr 2003 04:03:48 +0000 (+0000) Subject: In case someone is using UTF-8 locales. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1da2899b25b80b668761486331f7dffeeea2be83;p=p5sagit%2Fp5-mst-13.2.git In case someone is using UTF-8 locales. p4raw-id: //depot/perl@19175 --- diff --git a/lib/ExtUtils/MM_MacOS.pm b/lib/ExtUtils/MM_MacOS.pm index 4c43d24..9a2fa44 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|/|) {