From: Nathan Youngman Date: Sun, 29 Jun 2014 00:54:10 +0000 (-0600) Subject: Don't build on Plan 9 or Solaris (thanks @4ad) X-Git-Tag: v1.7.2~301 X-Git-Url: https://go.fuhry.dev/?a=commitdiff_plain;h=98c0790947fff19c80dd8c28e71dc0b5e7674b7e;p=fsnotify.git Don't build on Plan 9 or Solaris (thanks @4ad) https://codereview.appspot.com/108110046 --- 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 (