From: Chema Alonso Josa Date: Sat, 19 May 2018 13:57:20 +0000 (+0200) Subject: common-lisp-3.eclass: Add abct to common-lisp-export-impl-args X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=224fd51069611707512352412273a2cd2b74121b;p=gentoo.git common-lisp-3.eclass: Add abct to common-lisp-export-impl-args Closes: https://bugs.gentoo.org/656100 --- diff --git a/eclass/common-lisp-3.eclass b/eclass/common-lisp-3.eclass index 102332e345a5..ae2294910252 100644 --- a/eclass/common-lisp-3.eclass +++ b/eclass/common-lisp-3.eclass @@ -194,6 +194,11 @@ common-lisp-export-impl-args() { fi CL_BINARY="${1}" case "${CL_BINARY}" in + sbcl) + CL_NORC="--sysinit /dev/null --userinit /dev/null" + CL_LOAD="--load" + CL_EVAL="--eval" + ;; clisp) CL_NORC="-norc" CL_LOAD="-i" @@ -216,8 +221,8 @@ common-lisp-export-impl-args() { CL_LOAD="-load" CL_EVAL="-eval" ;; - sbcl) - CL_NORC="--sysinit /dev/null --userinit /dev/null" + abcl) + CL_NORC="--noinit" CL_LOAD="--load" CL_EVAL="--eval" ;;