diff options
author | Loïc Hoguin <[email protected]> | 2016-10-04 22:49:05 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-10-04 22:49:05 +0200 |
commit | 833fc7b75116322757b0f2c30d25c65124fee7a5 (patch) | |
tree | 8adb3e3a3e673001b01c692633451a1082c2b37f /plugins/triq.mk | |
parent | d387560fa0e3c4188b86f12e69774c3bf0c064bc (diff) | |
download | erlang.mk-833fc7b75116322757b0f2c30d25c65124fee7a5.tar.gz erlang.mk-833fc7b75116322757b0f2c30d25c65124fee7a5.tar.bz2 erlang.mk-833fc7b75116322757b0f2c30d25c65124fee7a5.zip |
Fix path issues when running triq tests on Windows
Diffstat (limited to 'plugins/triq.mk')
-rw-r--r-- | plugins/triq.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/triq.mk b/plugins/triq.mk index f316c1b..c108f7e 100644 --- a/plugins/triq.mk +++ b/plugins/triq.mk @@ -9,7 +9,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))]]); |