summaryrefslogtreecommitdiff
path: root/rebar.config.script
diff options
context:
space:
mode:
authorJerome Sautret <jerome.sautret@process-one.net>2014-10-30 16:51:01 +0100
committerJerome Sautret <jerome.sautret@process-one.net>2014-10-30 16:51:01 +0100
commit1d2ef85b3371744a02c044c2005c7a56b3b23d54 (patch)
tree6d9a5ecdb79d9b95e14d4db25d4e67f14af3ad21 /rebar.config.script
parentFix xref check when odbc driver is not used. (diff)
Clean up rebar script.
Diffstat (limited to 'rebar.config.script')
-rw-r--r--rebar.config.script5
1 files changed, 1 insertions, 4 deletions
diff --git a/rebar.config.script b/rebar.config.script
index 8b21e1b0..30d479ea 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -130,8 +130,6 @@ CfgXrefs = lists:flatmap(
["(\"riak_object\":_/_)"];
({json, false}) ->
["(\"jiffy\":_/_)"];
- ({p1db, false}) ->
- ["(\"p1db.*\":_/_)"];
({zlib, false}) ->
["(\"ezlib\":_/_)"];
({http, false}) ->
@@ -157,8 +155,7 @@ Config = [{erl_opts, Macros ++ HiPE ++ DebugInfo ++
{xref_checks, []},
{xref_queries,
[{"(XC - UC) || (XU - X - B - "
- ++ string:join(["(\"gen_transport\":_/_) - (\"eprof\":_/_)"]
- ++ CfgXrefs, " - ") ++ ")", []}]},
+ ++ string:join(CfgXrefs, " - ") ++ ")", []}]},
{post_hooks, PostHooks ++ CfgPostHooks},
{deps, Deps ++ CfgDeps}],
%%io:format("ejabberd configuration:~n ~p~n", [Config]),