From 98c0790947fff19c80dd8c28e71dc0b5e7674b7e Mon Sep 17 00:00:00 2001 From: Nathan Youngman Date: Sat, 28 Jun 2014 18:54:10 -0600 Subject: [PATCH] Don't build on Plan 9 or Solaris (thanks @4ad) https://codereview.appspot.com/108110046 --- example_test.go | 2 ++ fsnotify.go | 2 ++ fsnotify_test.go | 2 ++ 3 files changed, 6 insertions(+) diff --git a/example_test.go b/example_test.go index c049113..5b420cc 100644 --- a/example_test.go +++ b/example_test.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build !plan9,!solaris + package fsnotify_test import ( diff --git a/fsnotify.go b/fsnotify.go index b097521..b1bc573 100644 --- a/fsnotify.go +++ b/fsnotify.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build !plan9,!solaris + // Package fsnotify implements file system notification. package fsnotify diff --git a/fsnotify_test.go b/fsnotify_test.go index 6436561..1361071 100644 --- a/fsnotify_test.go +++ b/fsnotify_test.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build !plan9,!solaris + package fsnotify import ( -- 2.50.1