aboutsummaryrefslogtreecommitdiffstats
path: root/erlang.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-10-04 22:45:22 +0200
committerLoïc Hoguin <[email protected]>2016-10-04 22:45:22 +0200
commit0d0b0d7937f77cd5ee11268863aeab19b65db94d (patch)
tree9c8ff8dbd1a3488556afe0d3c2e73ec09f13028d /erlang.mk
parent24b9296c7b7dadb289f54cacf920f87845bd5532 (diff)
downloadcowlib-0d0b0d7937f77cd5ee11268863aeab19b65db94d.tar.gz
cowlib-0d0b0d7937f77cd5ee11268863aeab19b65db94d.tar.bz2
cowlib-0d0b0d7937f77cd5ee11268863aeab19b65db94d.zip
Update Erlang.mk to fix a testing issue on Windows
Triq didn't work because of path issues.
Diffstat (limited to 'erlang.mk')
-rw-r--r--erlang.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/erlang.mk b/erlang.mk
index d2d80df..c504ce4 100644
--- a/erlang.mk
+++ b/erlang.mk
@@ -16,7 +16,7 @@
ERLANG_MK_FILENAME := $(realpath $(lastword $(MAKEFILE_LIST)))
-ERLANG_MK_VERSION = 2.0.0-pre.2-145-gd387560
+ERLANG_MK_VERSION = 2.0.0-pre.2-145-gd387560-dirty
# Core configuration.
@@ -6419,7 +6419,7 @@ ifeq ($(filter triq,$(DEPS) $(TEST_DEPS)),triq)
tests:: triq
define triq_check.erl
- code:add_pathsa(["$(CURDIR)/ebin", "$(DEPS_DIR)/*/ebin"]),
+ code:add_pathsa(["$(call core_native_path,$(CURDIR)/ebin)", "$(call core_native_path,$(DEPS_DIR)/*/ebin)"]),
try
case $(1) of
all -> [true] =:= lists:usort([triq:check(M) || M <- [$(call comma_list,$(3))]]);