diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-03-29 15:27:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-03-29 15:32:18 +0200 |
commit | cea91813aca4819cd95c925e335336d9324bbf72 (patch) | |
tree | 6621c982537b79310c434490c8d2643bae98bd12 | |
parent | 8ffc20efb8ca2d7421474bad84ce780466bdab4d (diff) | |
download | guix-cea91813aca4819cd95c925e335336d9324bbf72.tar guix-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.scm | 5 |
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) |