Skip to content
Snippets Groups Projects
Commit 5286ab0f authored by Raymond Toy's avatar Raymond Toy
Browse files

Update "target:" search list with correct src dir

With the versioned paths, we need to update the "target:" search-list
in default-site-init.lisp to have the correct path to the sources
using the default tree structure.
parent 969372c2
No related branches found
No related tags found
1 merge request!261Fix #363: Add version number to files and directories
Pipeline #11657 passed
......@@ -32,13 +32,22 @@
;;; bin/
;;; lib/
;;; cmucl/
;;; lib/
;;; lisp*.coore
;;; man/
;;; src/
;;; <version>/
;;; lib/
;;; share/
;;; cmucl/
;;; <version>/
;;; src/
;;; tests/
;;; man/
;;; man1/
;;;
;;; If your sources are located somewhere else, change this
;;; accordingly.
(setf (search-list "target:")
'("library:../src/"))
(push (pathname
(concatenate 'string
"library:../../../../share/cmucl/"
lisp::*lisp-implementation-version*
"/src/"))
(search-list "target:"))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment