aboutsummaryrefslogtreecommitdiffstats
path: root/core/deps.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-09-24 11:27:24 +0200
committerLoïc Hoguin <[email protected]>2015-09-24 11:27:24 +0200
commitff042f786feab7358684d480a46614221a4618b6 (patch)
treec55c42e120010d7ecad42be186ae648cf7ae565c /core/deps.mk
parent2ef86140a557453a420672ef52b3863ce98f7c49 (diff)
downloaderlang.mk-ff042f786feab7358684d480a46614221a4618b6.tar.gz
erlang.mk-ff042f786feab7358684d480a46614221a4618b6.tar.bz2
erlang.mk-ff042f786feab7358684d480a46614221a4618b6.zip
Fix hex fetch method on Windows
Diffstat (limited to 'core/deps.mk')
-rw-r--r--core/deps.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/deps.mk b/core/deps.mk
index b06b622..94a45e4 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -499,7 +499,7 @@ define dep_fetch_hex.erl
[], [{body_format, binary}]),
{ok, Files} = erl_tar:extract({binary, Body}, [memory]),
{_, Source} = lists:keyfind("contents.tar.gz", 1, Files),
- ok = erl_tar:extract({binary, Source}, [{cwd, "$(DEPS_DIR)/$(1)"}, compressed]),
+ ok = erl_tar:extract({binary, Source}, [{cwd, "$(call core_native_path,$(DEPS_DIR)/$1)"}, compressed]),
halt()
endef