Remove LANG= when invoking lisp software. It's only needed when using make from a ssh connection, that should be done in the ssh script.

Change the sbcl command line parameter to increase memory
This commit is contained in:
solene rapenne 2016-09-21 13:43:04 +02:00
parent 10812b6e84
commit b107516c1e
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ARTICLES!= ls data/*.md
HTML= $(ARTICLES:.md=.html)
.if "${LISP}" == "sbcl"
PARAM=--dynamic-space-size 60 --script
PARAM=--dynamic-space-size 90 --script
.elif "${LISP}" == "clisp"
PARAM=
.elif "${LISP}" == "ecl"
@ -16,7 +16,7 @@ PARAM=-shell
all: clean dirs html
html: $(HTML) css
LANG=en_US.UTF-8 $(LISP) $(PARAM) generator.lisp
$(LISP) $(PARAM) generator.lisp
rm -fr "temp"
dirs: