diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2024-08-18 10:08:06 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2024-08-18 10:08:06 +0200 |
commit | 192d47bacf01ddc94fcc491ed205e20f806180bc (patch) | |
tree | e724d5bf140c19dcf4f8bd8d22f520a982df585c /gnu/packages/lisp.scm | |
parent | 803f9d3038d3c3048079c63d51b7b40bff09f17a (diff) | |
download | guix-192d47bacf01ddc94fcc491ed205e20f806180bc.tar guix-192d47bacf01ddc94fcc491ed205e20f806180bc.tar.gz |
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
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 4 |
1 files 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"))) |