From 9e072b55ca91ca991a92c297e423d94f46f6f2b4 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 13 Aug 2014 10:02:35 -0700 Subject: [PATCH] go.sys: add solaris build tags They were missed yesterday when adding the tags for all the other unix variants. LGTM=aram R=rsc, aram CC=golang-codereviews https://golang.org/cl/126150043 --- unix/race.go | 2 +- unix/race0.go | 2 +- unix/str.go | 2 +- unix/syscall.go | 2 +- unix/syscall_test.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/unix/race.go b/unix/race.go index be324338..03d60dd1 100644 --- a/unix/race.go +++ b/unix/race.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin,race dragonfly,race freebsd,race linux,race netbsd,race openbsd,race +// +build darwin,race linux,race package unix diff --git a/unix/race0.go b/unix/race0.go index 9ded70a4..d6de6196 100644 --- a/unix/race0.go +++ b/unix/race0.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin,!race dragonfly,!race freebsd,!race linux,!race netbsd,!race openbsd,!race +// +build darwin,!race dragonfly,!race freebsd linux netbsd openbsd solaris package unix diff --git a/unix/str.go b/unix/str.go index 9dc86d15..f873edec 100644 --- a/unix/str.go +++ b/unix/str.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd linux netbsd openbsd +// +build darwin dragonfly freebsd linux netbsd openbsd solaris package unix diff --git a/unix/syscall.go b/unix/syscall.go index 7ba44756..0d63f641 100644 --- a/unix/syscall.go +++ b/unix/syscall.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd linux netbsd openbsd +// +build darwin dragonfly freebsd linux netbsd openbsd solaris // Package unix contains an interface to the low-level operating system // primitives. OS details vary depending on the underlying system, and diff --git a/unix/syscall_test.go b/unix/syscall_test.go index e5bab901..7306345c 100644 --- a/unix/syscall_test.go +++ b/unix/syscall_test.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd linux netbsd openbsd +// +build darwin dragonfly freebsd linux netbsd openbsd solaris package unix_test