summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChema Alonso Josa <nimiux@gentoo.org>2018-05-19 15:57:20 +0200
committerChema Alonso Josa <nimiux@gentoo.org>2018-05-19 15:57:20 +0200
commit224fd51069611707512352412273a2cd2b74121b (patch)
tree42b087e73c24d18d975ec0d0a2e2bcdd2bc67eec
parentnet-dns/libidn2: Version 2.0.5. (diff)
downloadgentoo-224fd510.tar.gz
gentoo-224fd510.tar.bz2
gentoo-224fd510.zip
common-lisp-3.eclass: Add abct to common-lisp-export-impl-args
Closes: https://bugs.gentoo.org/656100
-rw-r--r--eclass/common-lisp-3.eclass9
1 files changed, 7 insertions, 2 deletions
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"
;;