glv pushed a commit to branch lisp-team
in repository guix.
commit 192d47bacf01ddc94fcc491ed205e20f806180bc
Author: Guillaume Le Vaillant <[email protected]>
AuthorDate: Sun Aug 18 10:08:06 2024 +0200
gnu: clasp-cl: Don't clutter lib and share directories.
* gnu/packages/lisp.scm (clasp-cl)[arguments]: Fix paths for lib and share
directories.
Change-Id: I3ec487c5387c720328d24d33497e414b3aec4143
---
gnu/packages/lisp.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 090b91610e..4f2e61733d 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -429,8 +429,8 @@ interface.")
"--reproducible-build"
"--package-path=/"
(string-append "--bin-path=" out "/bin")
- (string-append "--lib-path=" out "/lib")
- (string-append "--share-path=" out "/share")))))
+ (string-append "--lib-path=" out "/lib/clasp")
+ (string-append "--share-path=" out "/share/clasp")))))
(replace 'build
(lambda* _
(invoke "ninja" "-C" "build")))