소스 검색

Fix arg order in rebar_erlc_compiler:compile_mib/3

pull/3/head
Tuncer Ayaz 12 년 전
부모
커밋
70c82ba1c1
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      src/rebar_erlc_compiler.erl

+ 3
- 3
src/rebar_erlc_compiler.erl 파일 보기

@ -358,9 +358,9 @@ internal_erl_compile(Config, Source, Outdir, ErlOpts) ->
skipped
end.
-spec compile_mib(rebar_config:config(), file:filename(),
file:filename()) -> 'ok'.
compile_mib(Config, Source, Target) ->
-spec compile_mib(file:filename(), file:filename(),
rebar_config:config()) -> 'ok'.
compile_mib(Source, Target, Config) ->
ok = rebar_utils:ensure_dir(Target),
ok = rebar_utils:ensure_dir(filename:join("include", "dummy.hrl")),
Opts = [{outdir, "priv/mibs"}, {i, ["priv/mibs"]}] ++

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