Skip to content
Snippets Groups Projects
Commit 55f522de authored by Robert Goldman's avatar Robert Goldman
Browse files

Merge branch 'clisp-image-fix' into 'master'

clisp save-image fix.

See merge request asdf/asdf!155
parents bf589e14 690a6f68
Branches
Tags
No related merge requests found
...@@ -366,6 +366,10 @@ or COMPRESSION on SBCL, and APPLICATION-TYPE on SBCL/Windows." ...@@ -366,6 +366,10 @@ or COMPRESSION on SBCL, and APPLICATION-TYPE on SBCL/Windows."
:quiet t :quiet t
:start-package *package* :start-package *package*
:keep-global-handlers nil :keep-global-handlers nil
;; Faré explains the odd executable value (slightly paraphrased):
;; 0 is very different from t in clisp and there for a good reason:
;; 0 turns the executable into one that has its own command-line handling, so hackers can't
;; use the underlying -i or -x to turn your would-be restricted binary into an unrestricted evaluator.
:executable (if executable 0 t) ;--- requires clisp 2.48 or later, still catches --clisp-x :executable (if executable 0 t) ;--- requires clisp 2.48 or later, still catches --clisp-x
(when executable (when executable
(list (list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment