aboutsummaryrefslogtreecommitdiff
path: root/rel
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2013-06-18 21:54:30 +1000
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2013-06-18 21:55:56 +1000
commitec01ab39456896087b1ec195cf41f56e182b9206 (patch)
treefd13adaa768993daf3a6ff9ab77821861e4d2dc1 /rel
parentsync pubsub_odbc with last fix (diff)
Add some missing applications to the reltool script
Diffstat (limited to 'rel')
-rw-r--r--rel/reltool.config.script7
1 files changed, 5 insertions, 2 deletions
diff --git a/rel/reltool.config.script b/rel/reltool.config.script
index a52df7b0a..7ca9fe590 100644
--- a/rel/reltool.config.script
+++ b/rel/reltool.config.script
@@ -14,11 +14,14 @@ Vars = case file:consult(filename:join(["..", "vars.config"])) of
end,
RequiredOTPApps = [sasl, crypto, public_key, ssl,
- mnesia, inets, compiler],
+ mnesia, inets, compiler, asn1,
+ syntax_tools, os_mon, xmerl],
ConfiguredOTPApps = lists:flatmap(
fun({tools, true}) ->
[tools, runtime_tools];
+ ({odbc, true}) ->
+ [odbc];
(_) ->
[]
end, Vars),
@@ -36,7 +39,7 @@ DepConfiguredApps = lists:flatmap(
({json, true}) -> [jiffy];
({iconv, true}) -> [p1_iconv];
({http, true}) -> [ibrowse, lhttpc];
- ({odbc, true}) -> [odbc];
+ ({lager, true}) -> [lager];
(_) -> []
end, Vars),