diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2016-08-11 21:36:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2016-08-11 21:36:13 +0000 |
commit | 3d0fa95d5c3c8826c9bc5ce746b220aa36581afb (patch) | |
tree | eb198c376760f44b13eac6992dd8e740f9a45c75 /libgo | |
parent | a8b956c1bc767a2f7730d64edd1b31b8fb13420f (diff) | |
download | gcc-3d0fa95d5c3c8826c9bc5ce746b220aa36581afb.tar.gz |
os: fix build tags for dir_regfile.go
We want to build dir_regfile.go if not GNU/linux, and not solaris/386,
and not solaris/sparc. The latter two conditions were incorrect. To
write ! solaris/386 we have to write !solaris !386. I forgot De
Morgan's Law.
Reviewed-on: https://go-review.googlesource.com/26870
From-SVN: r239393
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/go/os/dir_regfile.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/os/dir_regfile.go b/libgo/go/os/dir_regfile.go index adea87d5430..8b17f387f1c 100644 --- a/libgo/go/os/dir_regfile.go +++ b/libgo/go/os/dir_regfile.go @@ -6,8 +6,8 @@ // license that can be found in the LICENSE file. // +build !linux -// +build !solaris,386 -// +build !solaris,sparc +// +build !solaris !386 +// +build !solaris !sparc package os |