diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-09 20:28:14 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-09 20:28:14 +0200 |
commit | c59b33c85e58e78bf2c796dfe19c91e8f9427936 (patch) | |
tree | 19ced1c85de105a1e39d0bb8c603c6f04fe419c2 | |
parent | 4789e39a8e5e1245617a559eddd23b66400f4b34 (diff) | |
download | sciteco-c59b33c85e58e78bf2c796dfe19c91e8f9427936.tar.gz |
try a different value for LC_ALL on Mac OS to accept UTF-8 command lines (refs #5)
-rw-r--r-- | tests/atlocal.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/atlocal.in b/tests/atlocal.in index e9bb908..c5cb4b9 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -18,8 +18,7 @@ G_ENABLE_DIAGNOSTIC=1 # are accepted on command lines. case $host in *-*-darwin*) - LANG=C - LC_CTYPE=UTF-8 + LC_ALL=`defaults read -g AppleLocale | @SED@ 's/@.*$//g'`.UTF-8 ;; *) LC_ALL=C.UTF-8 |