gnu: guile-git: Install .go files to /site-ccache.

* gnu/packages/guile.scm (guile-git)[arguments] <bootstrap>: Change
"/ccache" to "/site-ccache" in Makefile.am.
master
Ludovic Courtès 2017-04-02 23:21:11 +02:00
parent 60f37e3cb1
commit 245575eaf3
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 5 additions and 0 deletions

View File

@ -1707,6 +1707,11 @@ is not available for Guile 2.0.")
'(#:phases (modify-phases %standard-phases
(add-after 'unpack 'bootstrap
(lambda _
;; Install .go files to "site-ccache", not "ccache".
(substitute* "Makefile.am"
(("/ccache")
"/site-ccache"))
(zero? (system* "autoreconf" "-vfi")))))))
(native-inputs
`(("autoconf" ,autoconf)