mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Fix options to be more consistent
This commit is contained in:
parent
e4a9310a97
commit
0151f63239
1 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ target_file(F, TargetDir, InExt, OutExt) ->
|
|||
|
||||
|
||||
compile_erl(Source, Config) ->
|
||||
Opts = rebar_config:get_list(Config, erlc_opts, []),
|
||||
Opts = rebar_config:get_list(Config, erl_opts, []),
|
||||
case compile:file(Source, [{i, "include"}, {outdir, "ebin"}, report] ++ Opts) of
|
||||
{ok, _} ->
|
||||
ok;
|
||||
|
@ -109,7 +109,7 @@ compile_erl(Source, Config) ->
|
|||
end.
|
||||
|
||||
compile_mib(Source, Config) ->
|
||||
Opts = rebar_config:get_list(Config, mibc_opts, []),
|
||||
Opts = rebar_config:get_list(Config, mib_opts, []),
|
||||
case snmpc:compile(Source, [{outdir, "priv/mibs"}, {i, ["priv/mibs"]}] ++ Opts) of
|
||||
{ok, _} ->
|
||||
ok;
|
||||
|
|
Loading…
Reference in a new issue