mirror of
https://github.com/containers/podman.git
synced 2025-05-21 17:16:22 +08:00
Merge pull request #3152 from rhatdan/remote
install.remote should be separate for install.bin
This commit is contained in:
9
Makefile
9
Makefile
@ -259,14 +259,17 @@ changelog: ## Generate changelog
|
||||
$(shell cat $(TMPFILE) >> changelog.txt)
|
||||
$(shell rm $(TMPFILE))
|
||||
|
||||
install: .gopathok install.bin install.man install.cni install.systemd ## Install binaries to system locations
|
||||
install: .gopathok install.bin install.remote install.man install.cni install.systemd ## Install binaries to system locations
|
||||
|
||||
install.remote:
|
||||
install ${SELINUXOPT} -d -m 755 $(BINDIR)
|
||||
install ${SELINUXOPT} -m 755 bin/podman-remote $(BINDIR)/podman-remote
|
||||
test -z "${SELINUXOPT}" || chcon --verbose --reference=$(BINDIR)/podman bin/podman-remote
|
||||
|
||||
install.bin:
|
||||
install ${SELINUXOPT} -d -m 755 $(BINDIR)
|
||||
install ${SELINUXOPT} -m 755 bin/podman $(BINDIR)/podman
|
||||
install ${SELINUXOPT} -m 755 bin/podman-remote $(BINDIR)/podman-remote
|
||||
test -z "${SELINUXOPT}" || chcon --verbose --reference=$(BINDIR)/podman bin/podman
|
||||
test -z "${SELINUXOPT}" || chcon --verbose --reference=$(BINDIR)/podman bin/podman-remote
|
||||
|
||||
install.man: docs
|
||||
install ${SELINUXOPT} -d -m 755 $(MANDIR)/man1
|
||||
|
@ -387,6 +387,7 @@ popd
|
||||
install -dp %{buildroot}%{_unitdir}
|
||||
PODMAN_VERSION=%{version} %{__make} PREFIX=%{buildroot}%{_prefix} ETCDIR=%{buildroot}%{_sysconfdir} \
|
||||
install.bin \
|
||||
install.remote \
|
||||
install.man \
|
||||
install.cni \
|
||||
install.systemd \
|
||||
|
Reference in New Issue
Block a user