From f96186dd4ba55c51c91bb663e844151e278bbb2f Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 8 Jun 2021 13:35:11 -0400 Subject: Fetch git .tar.gz for compatibility OpenBSD tar(1) has no -J. --- www/git.causal.agency/cgit/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'www/git.causal.agency/cgit') diff --git a/www/git.causal.agency/cgit/Makefile b/www/git.causal.agency/cgit/Makefile index 49109adc..0c5b632d 100644 --- a/www/git.causal.agency/cgit/Makefile +++ b/www/git.causal.agency/cgit/Makefile @@ -15,7 +15,7 @@ pdfdir = $(docdir) mandir = $(prefix)/share/man SHA1_HEADER = GIT_VER = 2.25.1 -GIT_URL = https://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.xz +GIT_URL = https://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.gz INSTALL = install COPYTREE = cp -r MAN5_TXT = $(wildcard *.5.txt) @@ -157,7 +157,7 @@ clean-doc: $(RM) cgitrc.5 cgitrc.5.html cgitrc.5.pdf cgitrc.5.xml cgitrc.5.fo get-git: - curl -L $(GIT_URL) | tar -xJf - && rm -rf git && mv git-$(GIT_VER) git + curl -L $(GIT_URL) | tar -xzf - && rm -rf git && mv git-$(GIT_VER) git tags: $(QUIET_TAGS)find . -name '*.[ch]' | xargs ctags -- cgit 1.4.1