From cbf593c0f2f39034e9104bbf77e2ec7c48c98fc5 Mon Sep 17 00:00:00 2001 From: smasher164 Date: Wed, 31 Jul 2019 20:40:32 -0400 Subject: [PATCH] unix: remove nacl build tag from dirent code Although CL 128110043 had deleted nacl from x/sys/unix, CL 38758 accidentially introduced its build tag in dirent.go when copying over stdlib syscall code, which this CL removes. Fixes golang/go#33391. Change-Id: Iad6fe9818e38f14548eecdc078392865a60e4685 Reviewed-on: https://go-review.googlesource.com/c/sys/+/188361 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- unix/dirent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/dirent.go b/unix/dirent.go index 6f3460e6..304016b6 100644 --- a/unix/dirent.go +++ b/unix/dirent.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 nacl netbsd openbsd solaris +// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris package unix