mirror of https://github.com/perkeep/perkeep.git
make.go: tags list should be space-separated
Change-Id: I8c50a2cc0fb293644467813b53606ed09faf6fc9
This commit is contained in:
parent
ef112828c7
commit
6df14e291e
2
make.go
2
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 <camlistore_root>/bin:
|
||||
|
|
Loading…
Reference in New Issue