aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-05-17 19:27:23 +0300
committerLoïc Hoguin <[email protected]>2015-05-17 19:27:23 +0300
commit027af052d5a905a8209d0eed3c99893da8d0077b (patch)
tree183cf01e03e66fa12ac7237a105d5c20af8543f7 /core
parent5195492cdbd88d8a30df50a116d7e5cd2ad7b58c (diff)
downloaderlang.mk-027af052d5a905a8209d0eed3c99893da8d0077b.tar.gz
erlang.mk-027af052d5a905a8209d0eed3c99893da8d0077b.tar.bz2
erlang.mk-027af052d5a905a8209d0eed3c99893da8d0077b.zip
Ignore some common unneeded deps when patching rebar apps
Things like edown or meck are quite common and only used for building doc comments or testing. Proper is unfortunately required at this point.
Diffstat (limited to 'core')
-rw-r--r--core/deps.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/deps.mk b/core/deps.mk
index f54d972..68430bc 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -146,6 +146,8 @@ define dep_autopatch_rebar.erl
Escape = fun (Text) ->
re:replace(Text, "\\\\$$$$", "\$$$$$$$$", [global, {return, list}])
end,
+ Write("IGNORE_DEPS = edown eper eunit_formatters meck "
+ "rebar_lock_deps_plugin rebar_vsn_plugin reltool_util\n\n"),
fun() ->
Write("ERLC_OPTS = +debug_info\n"),
case lists:keyfind(erl_opts, 1, Conf) of