From 6df14e291e6b0b2e5ca3139b77c4b87313263087 Mon Sep 17 00:00:00 2001 From: mpl Date: Fri, 3 Oct 2014 19:31:59 +0200 Subject: [PATCH] make.go: tags list should be space-separated Change-Id: I8c50a2cc0fb293644467813b53606ed09faf6fc9 --- make.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.go b/make.go index bf2909b09..1597ba6dd 100644 --- a/make.go +++ b/make.go @@ -190,7 +190,7 @@ func main() { tags = append(tags, "netgo") ldFlags = "-w " + ldFlags } - baseArgs = append(baseArgs, "--ldflags="+ldFlags, "--tags="+strings.Join(tags, ",")) + baseArgs = append(baseArgs, "--ldflags="+ldFlags, "--tags="+strings.Join(tags, " ")) // First install command: build just the final binaries, installed to a GOBIN // under /bin: