aboutsummaryrefslogtreecommitdiffstats
path: root/core/deps.mk
diff options
context:
space:
mode:
Diffstat (limited to 'core/deps.mk')
-rw-r--r--core/deps.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/deps.mk b/core/deps.mk
index 181b2b7..d6081da 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -502,18 +502,18 @@ ifeq (,$(dep_$(1)))
else
ifeq (1,$(words $(dep_$(1))))
$(dep_verbose) VS=git; \
- REPO=$(dep_$(1)); \
+ REPO=$(patsubst git://github.com/%,https://github.com/%,$(dep_$(1))); \
COMMIT=master; \
$(call dep_fetch,$(1))
else
ifeq (2,$(words $(dep_$(1))))
$(dep_verbose) VS=git; \
- REPO=$(word 1,$(dep_$(1))); \
+ REPO=$(patsubst git://github.com/%,https://github.com/%,$(word 1,$(dep_$(1)))); \
COMMIT=$(word 2,$(dep_$(1))); \
$(call dep_fetch,$(1))
else
$(dep_verbose) VS=$(word 1,$(dep_$(1))); \
- REPO=$(word 2,$(dep_$(1))); \
+ REPO=$(patsubst git://github.com/%,https://github.com/%,$(word 2,$(dep_$(1)))); \
COMMIT=$(word 3,$(dep_$(1))); \
$(call dep_fetch,$(1))
endif