summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar Andy Wingo2010-11-23 23:15:54 +0100
committerGravatar Andy Wingo2010-11-23 23:15:54 +0100
commit507db16d489e75408d93edf2a46f52c4fd3a42be (patch)
tree3a90eecfeef5599f4e14e4de53dd7a9e491dbae4
parent16434bdf1d72b69e256bbcbff914231487fb5126 (diff)
downloadtekuti-507db16d489e75408d93edf2a46f52c4fd3a42be.tar.gz
tekuti-507db16d489e75408d93edf2a46f52c4fd3a42be.zip
fix locale setting
* src/tekuti: Use sh, not bash. * tekuti/boot.scm (boot): Doh, actually set the locale.
-rwxr-xr-xsrc/tekuti2
-rw-r--r--tekuti/boot.scm2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tekuti b/src/tekuti
index 29270df..9f30010 100755
--- a/src/tekuti
+++ b/src/tekuti
@@ -1,4 +1,4 @@
-#! /bin/bash
+#!/bin/sh
# -*- scheme -*-
exec guile $GUILE_FLAGS -e main "$0" "$@"
!#
diff --git a/tekuti/boot.scm b/tekuti/boot.scm
index 7ad4c0a..bccb35d 100644
--- a/tekuti/boot.scm
+++ b/tekuti/boot.scm
@@ -70,7 +70,7 @@
opts))
(define (boot args)
- (setlocale LC_ALL)
+ (setlocale LC_ALL "")
(let ((options (parse-options args)))
(let ((config (option-ref options 'config #f)))
(if config