diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-06-08 21:38:23 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-06-10 16:22:49 +0200 |
commit | c84e9a2e8477d99be37fa90357212eb20aa8784a (patch) | |
tree | 5eee9afa6986391e3965c67bc092c9b1064248cd /eclass | |
parent | common-lisp-3.eclass: Support EAPI 8 (diff) | |
download | gentoo-c84e9a2e8477d99be37fa90357212eb20aa8784a.tar.gz gentoo-c84e9a2e8477d99be37fa90357212eb20aa8784a.tar.bz2 gentoo-c84e9a2e8477d99be37fa90357212eb20aa8784a.zip |
common-lisp-3.eclass: sbcl supports --no-sysinit --no-userinit
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/common-lisp-3.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/common-lisp-3.eclass b/eclass/common-lisp-3.eclass index b859c7859bfb..99825190f32e 100644 --- a/eclass/common-lisp-3.eclass +++ b/eclass/common-lisp-3.eclass @@ -215,7 +215,7 @@ common-lisp-export-impl-args() { case "${CL_BINARY}" in sbcl) CL_BINARY="${CL_BINARY} --non-interactive" - CL_NORC="--sysinit /dev/null --userinit /dev/null" + CL_NORC="--no-sysinit --no-userinit" CL_LOAD="--load" CL_EVAL="--eval" ;; |