mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-31 18:43:28 +00:00
Adds support for USE_GIT_URLS environment variable
This commit is contained in:
parent
c6b0a5307f
commit
5767ac2e48
@ -14,6 +14,12 @@ else
|
||||
SILENT=
|
||||
endif
|
||||
|
||||
ifndef USE_GIT_URLS
|
||||
GIT_PREFIX=https://www.
|
||||
else
|
||||
GIT_PREFIX=git://
|
||||
endif
|
||||
|
||||
# verbose error messages everywhere
|
||||
STATIC_DEBUG=0
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
include ../global.mk
|
||||
include ../config-user.mk
|
||||
include ../mk/${COMPILER}.mk
|
||||
|
||||
@ -5,7 +6,7 @@ WGET?=wget
|
||||
CS_VER=3.0
|
||||
CS_TAR=http://capstone-engine.org/download/$(CS_VER)/capstone-$(CS_VER).tgz
|
||||
CS_TAR=
|
||||
CS_URL=https://www.github.com/aquynh/capstone.git
|
||||
CS_URL=$(GIT_PREFIX)github.com/aquynh/capstone.git
|
||||
CS_UPD=20150619
|
||||
CS_BRA=next
|
||||
CS_TIP=a5540d843b71fdeb72a04acbb7c67bd7a3459f1a
|
||||
|
Loading…
x
Reference in New Issue
Block a user