diff options
author | Loïc Hoguin <[email protected]> | 2016-10-30 00:06:32 +0300 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-10-30 00:06:32 +0300 |
commit | 1c06eab8369fae4aed56a9583c1ddb8a49e66462 (patch) | |
tree | c07978bab134c85fdcdc720818386f23d3fcf627 | |
parent | d41faf4925c09e1ea84f06bb7c249835732a4d72 (diff) | |
download | erlang.mk-1c06eab8369fae4aed56a9583c1ddb8a49e66462.tar.gz erlang.mk-1c06eab8369fae4aed56a9583c1ddb8a49e66462.tar.bz2 erlang.mk-1c06eab8369fae4aed56a9583c1ddb8a49e66462.zip |
Properly convert DTL files path on Windows/MSYS2
-rw-r--r-- | plugins/erlydtl.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/erlydtl.mk b/plugins/erlydtl.mk index 4f04e14..dd9621e 100644 --- a/plugins/erlydtl.mk +++ b/plugins/erlydtl.mk @@ -56,6 +56,7 @@ endef ebin/$(PROJECT).app:: $(DTL_FILES) | ebin/ $(if $(strip $?),\ - $(dtl_verbose) $(call erlang,$(call erlydtl_compile.erl,$?),-pa ebin/ $(DEPS_DIR)/erlydtl/ebin/)) + $(dtl_verbose) $(call erlang,$(call erlydtl_compile.erl,$(call core_native_path,$?)),\ + -pa ebin/ $(DEPS_DIR)/erlydtl/ebin/)) endif |