aboutsummaryrefslogtreecommitdiff
path: root/guix/build/go-build-system.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-05-05 22:41:11 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-05-05 22:41:11 -0400
commit2edec51c5eabeef6d7d9e1cbae2b2be379aaa6b8 (patch)
treefe9a57caeef7effcc1f614c78b16911b0febdda8 /guix/build/go-build-system.scm
parent59781b32d85a634de04ed015ba72db00f13b6dcc (diff)
downloadguix-2edec51c5eabeef6d7d9e1cbae2b2be379aaa6b8.tar
guix-2edec51c5eabeef6d7d9e1cbae2b2be379aaa6b8.tar.gz
build: go-build-system: Follow-up commit.
There was an extraneous pair of parens in commit 7e84d3eef7. Thanks for Mark Weaver for reporting the issue. * guix/build/go-build-system.scm (unpack): Remove the extraneous pair of parentheses surrounding the `display' function call.
Diffstat (limited to 'guix/build/go-build-system.scm')
-rw-r--r--guix/build/go-build-system.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/go-build-system.scm b/guix/build/go-build-system.scm
index d106e70d35..22427a80b3 100644
--- a/guix/build/go-build-system.scm
+++ b/guix/build/go-build-system.scm
@@ -179,7 +179,7 @@ unpacking."
(delete-file-recursively scratch-dir)))
(when (string-null? import-path)
- ((display "WARNING: The Go import path is unset.\n")))
+ (display "WARNING: The Go import path is unset.\n"))
(when (string-null? unpack-path)
(set! unpack-path import-path))
(let ((dest (string-append (getenv "GOPATH") "/src/" unpack-path)))