Using clisp by default, fixing locale problem - cl-yag - Common Lisp Yet Another website Generator
HTML git clone git://bitreich.org/cl-yag/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/cl-yag/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR LICENSE
---
DIR commit 31803a8ff8fc5a916f53480eb2a5a1a9c1e89f7a
DIR parent f837cf5d08134bf5e665f7b9263b2fe619f4da08
HTML Author: Solene Rapenne <solene@dataswamp.org>
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(-)
---
DIR 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/*