Skip compilcation of logparser and tail on solaris (#3113)
Allows compilation for solaris
This commit is contained in:
parent
6911c474ef
commit
8da8608fb9
|
@ -1,3 +1,5 @@
|
||||||
|
// +build !solaris
|
||||||
|
|
||||||
package logparser
|
package logparser
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
// +build solaris
|
||||||
|
|
||||||
|
package logparser
|
|
@ -1,3 +1,5 @@
|
||||||
|
// +build !solaris
|
||||||
|
|
||||||
package tail
|
package tail
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
// Skipping plugin on Solaris due to fsnotify support
|
||||||
|
//
|
||||||
|
// +build solaris
|
||||||
|
|
||||||
|
package tail
|
Loading…
Reference in New Issue