From 507db16d489e75408d93edf2a46f52c4fd3a42be Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 23 Nov 2010 23:15:54 +0100 Subject: fix locale setting * src/tekuti: Use sh, not bash. * tekuti/boot.scm (boot): Doh, actually set the locale. --- src/tekuti | 2 +- tekuti/boot.scm | 2 +- 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 -- cgit v1.2.3-54-g00ecf