소스 검색

Remove lfe_opts (suggested by Tim Dysinger)

pull/3/head
Tuncer Ayaz 14 년 전
부모
커밋
67af251d52
2개의 변경된 파일2개의 추가작업 그리고 7개의 파일을 삭제
  1. +1
    -2
      rebar.config.sample
  2. +1
    -5
      src/rebar_lfe_compiler.erl

+ 1
- 2
rebar.config.sample 파일 보기

@ -50,8 +50,7 @@
%% LFE files to compile before the rest
{lfe_first_files, []}.
%% Options for the LFE compiler
{lfe_opts, []}.
%% Options for the LFE compiler: reuse {erl_opts, []}
%% == ErlyDTL Compiler ==

+ 1
- 5
src/rebar_lfe_compiler.erl 파일 보기

@ -37,10 +37,6 @@
%% ===================================================================
compile(Config, _AppFile) ->
?DEPRECATED(fail_on_warning, warnings_as_errors,
rebar_config:get_list(Config, lfe_opts, []),
"once OTP R15 is released"),
FirstFiles = rebar_config:get_list(Config, lfe_first_files, []),
rebar_base_compiler:run(Config, FirstFiles, "src", ".lfe", "ebin", ".beam",
fun compile_lfe/3).
@ -66,7 +62,7 @@ compile_lfe(Source, Target, Config) ->
?FAIL;
_ ->
Opts = [{i, "include"}, {outdir, "ebin"}, report, return] ++
rebar_config:get_list(Config, lfe_opts, []),
rebar_config:get_list(Config, erl_opts, []),
case lfe_comp:file(Source, Opts) of
{ok, _, []} ->
ok;

불러오는 중...
취소
저장