diff options
author | baude <bbaude@redhat.com> | 2019-08-07 14:27:49 -0400 |
---|---|---|
committer | Lokesh Mandvekar <lsm5@fedoraproject.org> | 2019-08-07 14:52:49 -0400 |
commit | 096af85278967421533ffa9975078eccd57b5b5d (patch) | |
tree | 39cdba7428f1b99d2308baa56dca6807cd453dc3 /Makefile | |
parent | 66ea32cbaf926d59fae3345b7e27a15050ab3afe (diff) | |
download | podman-096af85278967421533ffa9975078eccd57b5b5d.tar.gz podman-096af85278967421533ffa9975078eccd57b5b5d.tar.bz2 podman-096af85278967421533ffa9975078eccd57b5b5d.zip |
add make to make installs
as issue #2702 describes, we want to make podman and podman-remote as
part of make install.
Fixes: #2702
Signed-off-by: baude <bbaude@redhat.com>
avoid `make` in `make install` in the rpmbuild process.
Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -333,12 +333,12 @@ changelog: ## Generate changelog install: .gopathok install.bin install.remote install.man install.cni install.systemd ## Install binaries to system locations -install.remote: +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 -install.bin: +install.bin: podman install ${SELINUXOPT} -d -m 755 $(DESTDIR)$(BINDIR) install ${SELINUXOPT} -m 755 bin/podman $(DESTDIR)$(BINDIR)/podman test -z "${SELINUXOPT}" || chcon --verbose --reference=$(DESTDIR)$(BINDIR)/podman bin/podman |