2015-01-12 10:32:20 +01:00
|
|
|
Description: remove make targets for deps
|
|
|
|
Without this patch, dependencies would be downloaded and compiled
|
|
|
|
using rebar at build time.
|
|
|
|
Author: Philipp Huebner <debalance@debian.org>
|
|
|
|
|
|
|
|
Index: ejabberd/rebar.config.script
|
|
|
|
===================================================================
|
2015-07-08 11:54:14 +02:00
|
|
|
diff --git a/rebar.config.script b/rebar.config.script
|
2015-10-13 12:04:36 +02:00
|
|
|
index 633433c..646a15a 100644
|
2015-07-08 11:54:14 +02:00
|
|
|
--- a/rebar.config.script
|
|
|
|
+++ b/rebar.config.script
|
2015-10-13 12:04:36 +02:00
|
|
|
@@ -187,9 +187,7 @@ Config = [{erl_opts, Macros ++ HiPE ++ DebugInfo ++
|
2015-07-08 11:54:14 +02:00
|
|
|
{xref_checks, []},
|
|
|
|
{xref_queries,
|
|
|
|
[{"(XC - UC) || (XU - X - B - "
|
|
|
|
- ++ string:join(CfgXrefs, " - ") ++ ")", []}]},
|
2015-01-12 10:32:20 +01:00
|
|
|
- {post_hooks, PostHooks ++ CfgPostHooks},
|
2015-10-13 12:04:36 +02:00
|
|
|
- {deps, AllDeps}] ++ ElixirConfig,
|
2015-07-08 11:54:14 +02:00
|
|
|
+ ++ string:join(CfgXrefs, " - ") ++ ")", []}]}],
|
2015-01-12 10:32:20 +01:00
|
|
|
%%io:format("ejabberd configuration:~n ~p~n", [Config]),
|
|
|
|
Config.
|
|
|
|
|