From 0e45637a97bbaec4c7c6edace593c350a050f034 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Tue, 21 Apr 2020 07:51:36 -0600 Subject: 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d4edbd5f7..f389bcb35 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3-54-g00ecf