support when build without seccomp build tag
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>docker-18.09
parent
bb647a68b9
commit
48200d7b5e
|
@ -1,4 +1,4 @@
|
|||
// +build linux
|
||||
// +build linux,seccomp
|
||||
|
||||
package system
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// +build !linux
|
||||
// +build !linux,seccomp
|
||||
|
||||
package system
|
||||
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
// +build !seccomp
|
||||
|
||||
package system
|
||||
|
||||
func SeccompSupported() bool {
|
||||
return false
|
||||
}
|
Loading…
Reference in New Issue