aboutsummaryrefslogtreecommitdiff
path: root/src/image.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-11-14 16:41:12 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-11-14 21:00:09 -0700
commit33ab1ff0607ea82fdabb6cae423248d2040b3286 (patch)
treecef57a61bcd68dab2b833db240746a33acb7dc84 /src/image.lisp
parent44d0a7db88048627f115521485ebdfad9dfdd575 (diff)
downloadconsfigurator-33ab1ff0607ea82fdabb6cae423248d2040b3286.tar.gz
*US*: use SB-EXT:*RUNTIME-PATHNAME* not SB-EXT:*CORE-PATHNAME*
SB-EXT:*RUNTIME-PATHNAME* is the path to the executable. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/image.lisp')
-rw-r--r--src/image.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.lisp b/src/image.lisp
index 969cea0..eb27942 100644
--- a/src/image.lisp
+++ b/src/image.lisp
@@ -106,7 +106,7 @@ Thus, PREREQUEST must not start up any threads."
#+sbcl (defvar *sbcl-runtime-cksum* (local-cksum sb-ext:*runtime-pathname*))
(defvar *us*
- #+sbcl sb-ext:*core-pathname*
+ #+sbcl sb-ext:*runtime-pathname*
#+(and linux (not sbcl)) (resolve-symlinks "/proc/self/exe"))
(define-simple-error wrong-execution-context-for-image-dump (aborted-change))