diff options
author | Kir Kolyshkin <kolyshkin@gmail.com> | 2022-04-13 16:15:09 -0700 |
---|---|---|
committer | Kir Kolyshkin <kolyshkin@gmail.com> | 2022-05-17 13:40:10 -0700 |
commit | d8c42de4121f5c2088db5a492ce600d0b99f8e75 (patch) | |
tree | 79c1dddc83f109c081739deba6dfc5ea7115845b /Makefile | |
parent | 105c6c7dd15c4c8363107deb593017c8d1762b7b (diff) | |
download | podman-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-- | Makefile | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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 \ |