build-system/go: Plan removal of the pkg folder for go-1.11 onward.

* guix/build/go-build-system.scm (install): New comment.
This commit is contained in:
Pierre Neidhardt 2018-11-11 22:03:08 +01:00
parent 9a65a05201
commit 0fd115d536
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 3 additions and 0 deletions

View File

@ -204,6 +204,9 @@ respectively."
$GOPATH/pkg, so we have to copy them into the output directory manually. $GOPATH/pkg, so we have to copy them into the output directory manually.
Compiled executable files should have already been installed to the store based Compiled executable files should have already been installed to the store based
on $GOBIN in the build phase." on $GOBIN in the build phase."
;; TODO: From go-1.10 onward, the pkg folder should not be needed (see
;; https://lists.gnu.org/archive/html/guix-devel/2018-11/msg00208.html).
;; Remove it?
(when (file-exists? "pkg") (when (file-exists? "pkg")
(copy-recursively "pkg" (string-append (assoc-ref outputs "out") "/pkg"))) (copy-recursively "pkg" (string-append (assoc-ref outputs "out") "/pkg")))
#t) #t)