civodul pushed a commit to branch master
in repository guix.
commit cea91813aca4819cd95c925e335336d9324bbf72
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sun Mar 29 15:27:39 2020 +0200
gnu: guile3.0-websocket: Install .go files in the right place.
* gnu/packages/guile-xyz.scm (guile3.0-websocket)[arguments]: In
'update-guile-version' phase, change "/ccache" to "/site-ccache".
---
gnu/packages/guile-xyz.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 0ed8419..e22592c 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -3272,7 +3272,10 @@ Relay Chat} (IRC).")
(substitute* "configure.ac"
(("2.0.9") "3.0.0"))
(substitute* "Makefile.am"
- (("2.0") "3.0"))
+ (("2.0") "3.0")
+
+ ;; Install .go files where they belong.
+ (("/ccache") "/site-ccache"))
#t)))))
(native-inputs
`(("autoconf" ,autoconf)