mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
49c25642b3
The combination of changes to rebar_erlc_compiler, and the fact that erl_first_files is inherited, caused a regression. To fix that, ensure every project uses its own .rebar/erlcinfo. While at it, fix the issue that erl_first_files entries were not included when initializing the dep digraph. Reported-by: Louis-Philippe Gauthier Reported-by: Roland Karlsson Thanks: Tuncer Ayaz
11 lines
315 B
Erlang
11 lines
315 B
Erlang
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
%% ex: ts=4 sw=4 ft=erlang et
|
|
{erl_first_files, ["src/first_xrl.erl", "src/first_yrl.erl"]}.
|
|
|
|
{erl_opts,
|
|
[
|
|
no_debug_info,
|
|
{i, "extra-include"},
|
|
{src_dirs, ["src", "extra-src"]},
|
|
{platform_define, "R13|R14", 'NO_CALLBACK_ATTRIBUTE'}
|
|
]}.
|