mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
Makefile: Make make get-git
work under OpenBSD.
OpenBSD tar(1) defaults to read from "/dev/rst0" when not specifying an filename and thus fails to extract the Git sourcecode when not passing stdin as input file descriptor explicitly. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
aabc70f74b
commit
7c2dea0367
2
Makefile
2
Makefile
@ -168,4 +168,4 @@ clean-doc:
|
|||||||
rm -f cgitrc.5 cgitrc.5.html cgitrc.5.pdf cgitrc.5.xml cgitrc.5.fo
|
rm -f cgitrc.5 cgitrc.5.html cgitrc.5.pdf cgitrc.5.xml cgitrc.5.fo
|
||||||
|
|
||||||
get-git:
|
get-git:
|
||||||
curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git
|
curl $(GIT_URL) | tar -xjf - && rm -rf git && mv git-$(GIT_VER) git
|
||||||
|
Loading…
Reference in New Issue
Block a user