1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
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-mqtree/rebar.config
===================================================================
--- erlang-p1-mqtree.orig/rebar.config
+++ erlang-p1-mqtree/rebar.config
@@ -23,7 +23,6 @@
{port_specs, [{"priv/lib/mqtree.so", ["c_src/mqtree.c"]}]}.
-{deps, [{p1_utils, ".*", {git, "https://github.com/processone/p1_utils", {tag, "1.0.21"}}}]}.
{clean_files, ["c_src/mqtree.gcda", "c_src/mqtree.gcno"]}.
|