mirror of https://github.com/containers/podman.git
Makefile: rm .install.libseccomp.sudo target
This was originally added in commita824186ac9
to be used from Travis CI. Travis was removed in commit8771a03af1
and there is no need to have this target ever since (October 2018). Also, remove the comment about BUILD_TAGS, which originally belonged to varlink target (removed by commitf62a356515
) but got misplaced later. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
parent
105c6c7dd1
commit
d8c42de412
7
Makefile
7
Makefile
|
@ -887,13 +887,6 @@ install.tools: .install.ginkgo .install.golangci-lint .install.bats ## Install n
|
|||
python3 -m pip install --user pre-commit; \
|
||||
fi
|
||||
|
||||
# $BUILD_TAGS variable is used in hack/golangci-lint.sh
|
||||
.PHONY: install.libseccomp.sudo
|
||||
install.libseccomp.sudo:
|
||||
rm -rf ../../seccomp/libseccomp
|
||||
git clone https://github.com/seccomp/libseccomp ../../seccomp/libseccomp
|
||||
cd ../../seccomp/libseccomp && git checkout --detach $(LIBSECCOMP_COMMIT) && ./autogen.sh && ./configure --prefix=/usr && make all && make install
|
||||
|
||||
.PHONY: uninstall
|
||||
uninstall:
|
||||
for i in $(filter %.1,$(MANPAGES_DEST)); do \
|
||||
|
|
Loading…
Reference in New Issue