diff options
author | Ian Lance Taylor <iant@golang.org> | 2020-09-26 12:11:51 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2020-09-28 16:16:54 -0700 |
commit | 9042b6605c259e55378a1f0eefc24b43363bb55b (patch) | |
tree | 5e85272858d564a335d4c8a75697f5687e70421e /libgo | |
parent | 77a23a825c2fcdac2a832998c228fd9d4ef99dd1 (diff) | |
download | gcc-9042b6605c259e55378a1f0eefc24b43363bb55b.zip gcc-9042b6605c259e55378a1f0eefc24b43363bb55b.tar.gz gcc-9042b6605c259e55378a1f0eefc24b43363bb55b.tar.bz2 |
net: add hurd build tag
Patch from Svante Signell.
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/257857
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/go/net/fd_posix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/net/fd_posix.go b/libgo/go/net/fd_posix.go index 53abd15..b2f99bc 100644 --- a/libgo/go/net/fd_posix.go +++ b/libgo/go/net/fd_posix.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 aix darwin dragonfly freebsd linux netbsd openbsd solaris windows +// +build aix darwin dragonfly freebsd hurd linux netbsd openbsd solaris windows package net |