aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Cammack <[email protected]>2014-02-18 17:10:31 -0600
committerAdam Cammack <[email protected]>2014-02-18 17:10:31 -0600
commit52613ac73111240a7f46ac870fe9cafe95497630 (patch)
treede2ee586d91c175adaf12e97efb79a89e966ea24
parent46d08fcffe8848b492089c29c2effb7767075792 (diff)
downloaderlang.mk-52613ac73111240a7f46ac870fe9cafe95497630.tar.gz
erlang.mk-52613ac73111240a7f46ac870fe9cafe95497630.tar.bz2
erlang.mk-52613ac73111240a7f46ac870fe9cafe95497630.zip
Change erlydtl call to work with old and new releases
-rw-r--r--erlang.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/erlang.mk b/erlang.mk
index 1e0a05e..c2954f7 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()'