summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rebar_erlc_compiler.erl2
-rw-r--r--src/rebar_lfe_compiler.erl6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/rebar_erlc_compiler.erl b/src/rebar_erlc_compiler.erl
index 08b663a..fe06cbf 100644
--- a/src/rebar_erlc_compiler.erl
+++ b/src/rebar_erlc_compiler.erl
@@ -252,7 +252,7 @@ internal_erl_compile(Source, Config, Outdir, ErlOpts) ->
case needs_compile(Source, Target, Hrls) of
true ->
Opts = [{outdir, filename:dirname(Target)}] ++
- ErlOpts ++ [{i, "include"}, report, return_errors],
+ ErlOpts ++ [{i, "include"}, report],
case compile:file(Source, Opts) of
{ok, _} ->
ok;
diff --git a/src/rebar_lfe_compiler.erl b/src/rebar_lfe_compiler.erl
index 4534c9f..3775735 100644
--- a/src/rebar_lfe_compiler.erl
+++ b/src/rebar_lfe_compiler.erl
@@ -61,10 +61,10 @@ compile_lfe(Source, _Target, Config) ->
>>, []),
?FAIL;
_ ->
- Opts = [{i, "include"}, {outdir, "ebin"}, report, return] ++
- rebar_config:get_list(Config, erl_opts, []),
+ Opts = [{i, "include"}, {outdir, "ebin"}, report]
+ ++ rebar_config:get_list(Config, erl_opts, []),
case lfe_comp:file(Source, Opts) of
- {ok, _, []} ->
+ {ok, _} ->
ok;
_ ->
?FAIL