Merge pull request #5162 from vrothberg/fix-4814

Make: s/uname -o/uname -s/
This commit is contained in:
OpenShift Merge Robot
2020-02-11 14:38:55 +01:00
committed by GitHub

View File

@ -582,7 +582,7 @@ install.libseccomp.sudo:
cmd/podman/varlink/iopodman.go: .gopathok cmd/podman/varlink/io.podman.varlink
ifneq (,$(findstring Linux,$(shell uname -o)))
ifneq (,$(findstring Linux,$(shell uname -s)))
# Only generate the varlink code on Linux (see issue #4814).
GO111MODULE=off $(GO) generate ./cmd/podman/varlink/...
endif