diff options
author | Marco Sirabella <marco@sirabella.org> | 2021-03-27 08:53:55 -0700 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-05-29 06:38:04 +0000 |
commit | fac7738130b9c0a22c01508409c514e955936f3b (patch) | |
tree | 8835740aaacb3d21eb1de59aa9158f824c5532d8 /eclass/common-lisp-3.eclass | |
parent | dev-util/ragel: actually apply Julia patch (diff) | |
download | gentoo-fac7738130b9c0a22c01508409c514e955936f3b.tar.gz gentoo-fac7738130b9c0a22c01508409c514e955936f3b.tar.bz2 gentoo-fac7738130b9c0a22c01508409c514e955936f3b.zip |
common-lisp-3.eclass: Don't run sbcl interactively
Closes: https://bugs.gentoo.org/777153
Signed-off-by: Marco Sirabella <marco@sirabella.org>
Closes: https://github.com/gentoo/gentoo/pull/20150
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/common-lisp-3.eclass')
-rw-r--r-- | eclass/common-lisp-3.eclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eclass/common-lisp-3.eclass b/eclass/common-lisp-3.eclass index 334444e16326..2ad4e243a846 100644 --- a/eclass/common-lisp-3.eclass +++ b/eclass/common-lisp-3.eclass @@ -197,6 +197,7 @@ common-lisp-export-impl-args() { CL_BINARY="${1}" case "${CL_BINARY}" in sbcl) + CL_BINARY="${CL_BINARY} --non-interactive" CL_NORC="--sysinit /dev/null --userinit /dev/null" CL_LOAD="--load" CL_EVAL="--eval" |