make.go: tags list should be space-separated

Change-Id: I8c50a2cc0fb293644467813b53606ed09faf6fc9
This commit is contained in:
mpl 2014-10-03 19:31:59 +02:00
parent ef112828c7
commit 6df14e291e
1 changed files with 1 additions and 1 deletions

View File

@ -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 <camlistore_root>/bin: