mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
prevent journald from being built on ARM
Signed-off-by: Govinda Fichtner <govinda.fichtner@googlemail.com>
This commit is contained in:
parent
afe6c1f30c
commit
6f6f10a75f
4 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
// +build linux
|
||||
// +build linux,!arm
|
||||
|
||||
// Package journald provides the log driver for forwarding server logs
|
||||
// to endpoints that receive the systemd format.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// +build !linux
|
||||
// +build !linux linux,arm
|
||||
|
||||
package journald
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// +build linux,cgo,!static_build,journald
|
||||
// +build linux,cgo,!static_build,journald,!arm
|
||||
|
||||
package journald
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// +build !linux !cgo static_build !journald
|
||||
// +build !linux !cgo static_build !journald linux,arm
|
||||
|
||||
package journald
|
||||
|
||||
|
|
Loading…
Reference in a new issue