aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-02-20 20:34:40 +0100
committerLoïc Hoguin <[email protected]>2014-02-20 20:34:40 +0100
commit0f30f01dc8c7e8010ca3d992082cd2fd445d0a62 (patch)
treedd8eec6adc3de37efc29ce37a4577e2af220a3cd
parent6d208ce555d7d85e7d1ad45105bea81f104feecc (diff)
parent52613ac73111240a7f46ac870fe9cafe95497630 (diff)
downloaderlang.mk-0f30f01dc8c7e8010ca3d992082cd2fd445d0a62.tar.gz
erlang.mk-0f30f01dc8c7e8010ca3d992082cd2fd445d0a62.tar.bz2
erlang.mk-0f30f01dc8c7e8010ca3d992082cd2fd445d0a62.zip
Merge branch 'fix_dtl_compilation' of git://github.com/acammack/erlang.mk
-rw-r--r--erlang.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/erlang.mk b/erlang.mk
index 1f5acad..fc9d9a7 100644
--- a/erlang.mk
+++ b/erlang.mk
@@ -132,7 +132,7 @@ define compile_dtl
Compile = fun(F) -> \
Module = list_to_atom( \
string:to_lower(filename:basename(F, ".dtl")) ++ "_dtl"), \
- erlydtl_compiler:compile(F, Module, [{out_dir, "ebin/"}]) \
+ erlydtl:compile(F, Module, [{out_dir, "ebin/"}]) \
end, \
_ = [Compile(F) || F <- string:tokens("$(1)", " ")], \
init:stop()'