summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKir Kolyshkin <kolyshkin@gmail.com>2022-04-13 16:15:09 -0700
committerKir Kolyshkin <kolyshkin@gmail.com>2022-05-17 13:40:10 -0700
commitd8c42de4121f5c2088db5a492ce600d0b99f8e75 (patch)
tree79c1dddc83f109c081739deba6dfc5ea7115845b /Makefile
parent105c6c7dd15c4c8363107deb593017c8d1762b7b (diff)
downloadpodman-d8c42de4121f5c2088db5a492ce600d0b99f8e75.tar.gz
podman-d8c42de4121f5c2088db5a492ce600d0b99f8e75.tar.bz2
podman-d8c42de4121f5c2088db5a492ce600d0b99f8e75.zip
Makefile: rm .install.libseccomp.sudo target
This was originally added in commit a824186ac9803ef to be used from Travis CI. Travis was removed in commit 8771a03af1f17f 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 commit f62a356515e387b0) but got misplaced later. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 3f9d56025..f6d0aab4f 100644
--- a/Makefile
+++ b/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 \