From 5cf5df307974a47597b730d4bbcb4195a2dd1c81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 23 Sep 2015 18:27:47 +0200 Subject: Fix bug introduced by previous commit --- core/deps.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'core') diff --git a/core/deps.mk b/core/deps.mk index 8134cb7..b06b622 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -533,8 +533,7 @@ endef dep_name = $(if $(dep_$(1)),$(1),$(pkg_$(1)_name)) dep_repo = $(patsubst git://github.com/%,https://github.com/%, \ $(if $(dep_$(1)),$(word 2,$(dep_$(1))),$(pkg_$(1)_repo))) -dep_commit = $(if $(dep_$(1)_commit),$(dep_$(1)_commit),\ - $(if $(dep_$(1)),$(word 3,$(dep_$(1))),$(pkg_$(1)_commit))) +dep_commit = $(if $(dep_$(1)_commit),$(dep_$(1)_commit),$(if $(dep_$(1)),$(word 3,$(dep_$(1))),$(pkg_$(1)_commit))) define dep_target $(DEPS_DIR)/$(1): -- cgit v1.2.3