summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-02-11 14:38:55 +0100
committerGitHub <noreply@github.com>2020-02-11 14:38:55 +0100
commit044fc0d783bf3dd5dbc8fb73e40d0b2813c6d91d (patch)
treeacc97a68495998e99d94548e8af6620c251a6bdb
parent72dcc45f5ad7cb6f8b45305694bd6675d65989d8 (diff)
parent51e0a8b1c35ab92ff374247c9f132ac49dbf658e (diff)
downloadpodman-044fc0d783bf3dd5dbc8fb73e40d0b2813c6d91d.tar.gz
podman-044fc0d783bf3dd5dbc8fb73e40d0b2813c6d91d.tar.bz2
podman-044fc0d783bf3dd5dbc8fb73e40d0b2813c6d91d.zip
Merge pull request #5162 from vrothberg/fix-4814
Make: s/uname -o/uname -s/
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5f71cb513..67e798c8d 100644
--- a/Makefile
+++ b/Makefile
@@ -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