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".
This commit is contained in:
Ludovic Courtès 2020-03-29 15:27:39 +02:00
parent 8ffc20efb8
commit cea91813ac
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -3272,7 +3272,10 @@ (define-public guile3.0-websocket
(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)