summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-03-29 15:27:39 +0200
committerLudovic Courtès <ludo@gnu.org>2020-03-29 15:32:18 +0200
commitcea91813aca4819cd95c925e335336d9324bbf72 (patch)
tree6621c982537b79310c434490c8d2643bae98bd12
parent8ffc20efb8ca2d7421474bad84ce780466bdab4d (diff)
downloadpatches-cea91813aca4819cd95c925e335336d9324bbf72.tar
patches-cea91813aca4819cd95c925e335336d9324bbf72.tar.gz
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".
-rw-r--r--gnu/packages/guile-xyz.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 0ed8419f10..e22592cd50 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)