rekado pushed a commit to branch master
in repository guix.
commit 8f05252862080e6b4a1723f26fc08e1b6ad1c7ef
Author: Ricardo Wurmus <[email protected]>
Date: Wed Mar 13 20:42:23 2019 +0100
gnu: guile-persist: Install go files to canonical directory.
* gnu/packages/guile-xyz.scm (guile-persist)[arguments]: Patch target
directory for go files in build phase "patch-prefix".
---
gnu/packages/guile-xyz.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 48bfa46..27230dd 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -2132,7 +2132,9 @@ chunks can be expressions as well as simple tokens.")
(("/usr/local/include/guile")
(string-append (assoc-ref inputs "guile") "/include/guile"))
(("-L/usr/local/lib")
- (string-append "-L" (assoc-ref inputs "guile") "/lib")))
+ (string-append "-L" (assoc-ref inputs "guile") "/lib"))
+ ;; Use canonical directory for go files.
+ (("/ccache") "/site-ccache"))
#t))
(add-after 'unpack 'patch-library-reference
(lambda* (#:key outputs #:allow-other-keys)