diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-05-05 22:41:11 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-05-05 22:41:11 -0400 |
commit | 2edec51c5eabeef6d7d9e1cbae2b2be379aaa6b8 (patch) | |
tree | fe9a57caeef7effcc1f614c78b16911b0febdda8 /guix/build | |
parent | 59781b32d85a634de04ed015ba72db00f13b6dcc (diff) |
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')
-rw-r--r-- | guix/build/go-build-system.scm | 2 |
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))) |