aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/relx.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2017-04-25 18:50:51 +0200
committerLoïc Hoguin <[email protected]>2017-04-25 18:50:51 +0200
commit0049f6501da1f6e70d21566c7b934a75df774dc2 (patch)
treeba8025926d095c804ad72f1f4c7d9527e4a7f6b5 /plugins/relx.mk
parent6ddfc12cb359ee34146d94736a4df9872c66cc3e (diff)
downloaderlang.mk-0049f6501da1f6e70d21566c7b934a75df774dc2.tar.gz
erlang.mk-0049f6501da1f6e70d21566c7b934a75df774dc2.tar.bz2
erlang.mk-0049f6501da1f6e70d21566c7b934a75df774dc2.zip
Fix invalid relx.config path on Windows
Diffstat (limited to 'plugins/relx.mk')
-rw-r--r--plugins/relx.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/relx.mk b/plugins/relx.mk
index 58d1391..9868fc4 100644
--- a/plugins/relx.mk
+++ b/plugins/relx.mk
@@ -57,7 +57,7 @@ run:
else
define get_relx_release.erl
- {ok, Config} = file:consult("$(RELX_CONFIG)"),
+ {ok, Config} = file:consult("$(call core_native_path,$(RELX_CONFIG))"),
{release, {Name, Vsn0}, _} = lists:keyfind(release, 1, Config),
Vsn = case Vsn0 of
{cmd, Cmd} -> os:cmd(Cmd);