]> granicus.if.org Git - ejabberd/commitdiff
Add some missing applications to the reltool script
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>
Tue, 18 Jun 2013 11:54:30 +0000 (21:54 +1000)
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>
Tue, 18 Jun 2013 11:55:56 +0000 (21:55 +1000)
rel/reltool.config.script

index a52df7b0a4f80d0cb1507426bd9fea760145000e..7ca9fe590022720400a853493ee32a37065631bf 100644 (file)
@@ -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),