diff options
author | Ed Santiago <santiago@redhat.com> | 2020-04-21 07:51:36 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2020-04-21 07:52:43 -0600 |
commit | 0e45637a97bbaec4c7c6edace593c350a050f034 (patch) | |
tree | 2aee08e36f4903ac78df98cdab84f15700e7fa80 /Makefile | |
parent | 84bbdcef5d3f6f431fe8fbf9e59896d7fc311111 (diff) | |
download | podman-0e45637a97bbaec4c7c6edace593c350a050f034.tar.gz podman-0e45637a97bbaec4c7c6edace593c350a050f034.tar.bz2 podman-0e45637a97bbaec4c7c6edace593c350a050f034.zip |
Makefile: fix broken chcon for podman-remote
The install.remote target looks like it was copy-pasted
from install.bin and missed a spot.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -474,7 +474,7 @@ install: .gopathok install.bin install.remote install.man install.cni install.sy install.remote: podman-remote install ${SELINUXOPT} -d -m 755 $(DESTDIR)$(BINDIR) install ${SELINUXOPT} -m 755 bin/podman-remote $(DESTDIR)$(BINDIR)/podman-remote - test -z "${SELINUXOPT}" || chcon --verbose --reference=$(DESTDIR)$(BINDIR)/podman bin/podman-remote + test -z "${SELINUXOPT}" || chcon --verbose --reference=$(DESTDIR)$(BINDIR)/podman-remote bin/podman-remote .PHONY: install.bin install.bin: podman |