common-lisp-3.eclass: Add abct to common-lisp-export-impl-args
authorChema Alonso Josa <nimiux@gentoo.org>
Sat, 19 May 2018 13:57:20 +0000 (15:57 +0200)
committerChema Alonso Josa <nimiux@gentoo.org>
Sat, 19 May 2018 13:57:20 +0000 (15:57 +0200)
Closes: https://bugs.gentoo.org/656100

eclass/common-lisp-3.eclass

index 102332e345a5ffa326db56b5bd8f6ee003fe5893..ae229491025237bee2befd4f2110ca92beb39727 100644 (file)
@@ -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"
                        ;;