Remove LANG= when invoking lisp software. It's only needed when using make from… | |
git clone git://bitreich.org/cl-yag/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit b107516c1e1125ada8b96260e7681bcf5d1b21b7 | |
parent 10812b6e84c471e0b76cdb6ea4f5df420365eb36 | |
Author: solene rapenne <[email protected]> | |
Date: Wed, 21 Sep 2016 13:43:04 +0200 | |
Remove LANG= when invoking lisp software. It's only needed when using make from… | |
Change the sbcl command line parameter to increase memory | |
Diffstat: | |
M Makefile | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -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: |