summaryrefslogtreecommitdiff
path: root/src/rebar_lfe_compiler.erl
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2010-01-03 22:53:04 -0700
committerDave Smith <dizzyd@dizzyd.com>2010-01-03 22:53:04 -0700
commitfa2a58261ada42798a393a9283fe79a8ca25f365 (patch)
treeba74515174b3114736c0ea3c153fc9bb318e36b1 /src/rebar_lfe_compiler.erl
parent9c15d63191695a8121cb5566817ed2123c59567b (diff)
Another round of refactoring to yield better flexiblity in the base_compiler system
Diffstat (limited to 'src/rebar_lfe_compiler.erl')
-rw-r--r--src/rebar_lfe_compiler.erl5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rebar_lfe_compiler.erl b/src/rebar_lfe_compiler.erl
index 78a2c3d..4451530 100644
--- a/src/rebar_lfe_compiler.erl
+++ b/src/rebar_lfe_compiler.erl
@@ -38,9 +38,8 @@
compile(Config, _AppFile) ->
FirstFiles = rebar_config:get_list(Config, lfe_first_files, []),
- rebar_base_compiler:run(Config, "src", ".lfe", "ebin", ".beam",
- FirstFiles,
- fun compile_lfe/3, []).
+ rebar_base_compiler:run(Config, FirstFiles, "src", ".lfe", "ebin", ".beam",
+ fun compile_lfe/3).
%% ===================================================================