1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: remove deps in rebar.config
Without this patch, rebar would download and compile the listed deps
at compile time.
Author: Philipp Huebner <debalance@debian.org>
Index: erlang-p1-sip/rebar.config
===================================================================
--- erlang-p1-sip.orig/rebar.config
+++ erlang-p1-sip/rebar.config
@@ -30,9 +30,6 @@
{port_specs, [{"priv/lib/esip_drv.so", ["c_src/esip_codec.c"]}]}.
-{deps, [{stun, ".*", {git, "https://github.com/processone/stun", {tag, "1.0.42"}}},
- {fast_tls, ".*", {git, "https://github.com/processone/fast_tls", {tag, "1.1.11"}}},
- {p1_utils, ".*", {git, "https://github.com/processone/p1_utils", {tag, "1.0.21"}}}]}.
{clean_files, ["c_src/esip_codec.gcda", "c_src/esip_codec.gcno"]}.
|