Using clisp by default, fixing locale problem - cl-yag - Common Lisp Yet Anothe… | |
git clone git://bitreich.org/cl-yag/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit 31803a8ff8fc5a916f53480eb2a5a1a9c1e89f7a | |
parent f837cf5d08134bf5e665f7b9263b2fe619f4da08 | |
Author: Solene Rapenne <[email protected]> | |
Date: Fri, 13 May 2016 15:24:05 +0200 | |
Using clisp by default, fixing locale problem | |
Diffstat: | |
M Makefile | 6 +++--- | |
1 file changed, 3 insertions(+), 3 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -1,5 +1,5 @@ | |
-LISP=ecl | |
-PARAM="" | |
+LISP=clisp | |
+PARAM= | |
.if "${LISP}" == "sbcl" | |
PARAM=--dynamic-space-size 60 --script | |
@@ -12,7 +12,7 @@ PARAM=-shell | |
all: | |
mkdir -p output/static | |
cp -fr static/* output/static/ | |
- $(LISP) $(PARAM) generator.lisp | |
+ LANG=POSIX.UTF-8 $(LISP) $(PARAM) generator.lisp | |
clean: | |
rm -fr output/* |