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 @@ ...@@ -32,13 +32,22 @@
;;; bin/ ;;; bin/
;;; lib/ ;;; lib/
;;; cmucl/ ;;; cmucl/
;;; lib/ ;;; <version>/
;;; lisp*.coore ;;; lib/
;;; man/ ;;; share/
;;; src/ ;;; cmucl/
;;; <version>/
;;; src/
;;; tests/
;;; man/
;;; man1/
;;; ;;;
;;; If your sources are located somewhere else, change this ;;; If your sources are located somewhere else, change this
;;; accordingly. ;;; accordingly.
(setf (search-list "target:") (push (pathname
'("library:../src/")) (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