From 36a7d3e7cd2dd68493bd9274f24441bf509d696c Mon Sep 17 00:00:00 2001 From: Manuel M T Chakravarty Date: Thu, 12 Nov 2009 00:28:57 +0000 Subject: Fix setting of utf8 locale on Mac OS X --- testsuite/driver/runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuite/driver') diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py index 1e833d59e7..602081a160 100644 --- a/testsuite/driver/runtests.py +++ b/testsuite/driver/runtests.py @@ -34,7 +34,7 @@ if v == '': h.close() if v != '': # If it does then use the first utf8 locale that is available - h = os.popen('locale -a | grep -i utf8 2>/dev/null', 'r') + h = os.popen('locale -a | grep -i "utf8\|utf-8" 2>/dev/null', 'r') v = h.readline().strip() h.close() if v != '': -- cgit v1.2.1