summaryrefslogtreecommitdiff
path: root/lib/locale.t
diff options
context:
space:
mode:
authorDominic Dunlop <domo@computer.org>2006-01-11 20:52:20 +0100
committerSteve Peters <steve@fisharerojo.org>2006-01-11 19:07:04 +0000
commit1d74b28c229b5172175a0073070beb529386ac4f (patch)
treeda94a27c0831e5ead4d835483241312bb3868ed3 /lib/locale.t
parent46d9c92000d60fdf5f225b00ee64f03ddeaaaad0 (diff)
downloadperl-1d74b28c229b5172175a0073070beb529386ac4f.tar.gz
Re: [PATCH] Mac OS X 10.4.4 (Darwin 8.4.0) still does not fix locale issue
Message-Id: <FD99F9D3-16DB-484C-BC0A-702F60DAACA4@computer.org> p4raw-id: //depot/perl@26789
Diffstat (limited to 'lib/locale.t')
-rw-r--r--lib/locale.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/locale.t b/lib/locale.t
index b4ba02d8b7..f38d7e5511 100644
--- a/lib/locale.t
+++ b/lib/locale.t
@@ -440,7 +440,7 @@ setlocale(LC_ALL, "C");
if ($^O eq 'darwin') {
# Darwin 8/Mac OS X 10.4 has bad Catalan locales: perl bug #35895,
# Apple bug ID# 4139653. It also has a problem in Byelorussian.
- if ($Config{osvers} ge '8' and $Config{osvers} le '8.3.0') {
+ if ($Config{osvers} ge '8' and $Config{osvers} lt '9') {
debug "# Skipping eu_ES, be_BY locales -- buggy in Darwin\n";
@Locale = grep ! m/^(eu_ES|be_BY.CP1131$)/, @Locale;
}