~ruther/guix-local

552ee77250409de0bde2b75f60eb5ddd0f881045 — Leo Famulari 8 years ago 0cbcab7
build-system/go: Fix installation path of executable files.

* guix/build/go-build-system.scm (setup-environment): Set GOBIN correctly.
1 files changed, 1 insertions(+), 1 deletions(-)

M guix/build/go-build-system.scm
M guix/build/go-build-system.scm => guix/build/go-build-system.scm +1 -1
@@ 171,7 171,7 @@ respectively."
      (setenv "GOPATH" (string-append (getcwd) ":" (getenv "GOPATH")))
      (setenv "GOPATH" (getcwd)))
    ;; Where to install compiled executable files ('commands' in Go parlance').
    (setenv "GOBIN" out)
    (setenv "GOBIN" (string-append out "/bin"))
    #t))

(define* (build #:key import-path #:allow-other-keys)