diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2020-12-21 12:30:06 +0100 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2020-12-21 15:55:18 +0100 |
commit | 1ad796677e1ce3f03463c791818176586987c389 (patch) | |
tree | 0257506a94a3f9fb4394f5e51d4092958e46cb5b /pkg/signal/signal_linux.go | |
parent | 5c6b5ef34905f40562b518799c35be8d06694e65 (diff) | |
download | podman-1ad796677e1ce3f03463c791818176586987c389.tar.gz podman-1ad796677e1ce3f03463c791818176586987c389.tar.bz2 podman-1ad796677e1ce3f03463c791818176586987c389.zip |
Fix build for mips architecture
The signal SIGSTKFLT does not exists on mips architectures.
Also RTMIN and RTMAX are different.
This code is copied from docker.
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'pkg/signal/signal_linux.go')
-rw-r--r-- | pkg/signal/signal_linux.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/signal/signal_linux.go b/pkg/signal/signal_linux.go index 72ab1b97b..305b9d21f 100644 --- a/pkg/signal/signal_linux.go +++ b/pkg/signal/signal_linux.go @@ -1,4 +1,5 @@ // +build linux +// +build !mips,!mipsle,!mips64,!mips64le // Signal handling for Linux only. package signal |