diff options
Diffstat (limited to 'meta')
-rwxr-xr-x | meta/guile-tools.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/guile-tools.in b/meta/guile-tools.in index a0822aefe..7f156ffd9 100755 --- a/meta/guile-tools.in +++ b/meta/guile-tools.in @@ -174,7 +174,9 @@ There is NO WARRANTY, to the extent permitted by law. (else (values (reverse options) args)))))) (define (main args) - (setlocale LC_ALL "") + (if (defined? 'setlocale) + (setlocale LC_ALL "")) + (call-with-values (lambda () (getopt args *option-grammar*)) (lambda (options args) (cond |