diff options
author | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2013-05-15 17:33:49 +1000 |
---|---|---|
committer | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2013-05-15 17:33:49 +1000 |
commit | a8e5984f5fd2d68ccb0c6e9877e157691b6c22cd (patch) | |
tree | bb51468ad7a118d09e148a63faff573aff318f9f /rel | |
parent | Improve the profiler (diff) |
Reflect applications name change
Diffstat (limited to 'rel')
-rw-r--r-- | rel/reltool.config.script | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/rel/reltool.config.script b/rel/reltool.config.script index dc23ed904..64ba40491 100644 --- a/rel/reltool.config.script +++ b/rel/reltool.config.script @@ -25,17 +25,17 @@ ConfiguredOTPApps = lists:flatmap( OTPApps = RequiredOTPApps ++ ConfiguredOTPApps, -DepRequiredApps = [p1_logger, cache_tab, tls, stringprep, xml, xmlrpc], +DepRequiredApps = [p1_logger, p1_cache_tab, p1_tls, p1_stringprep, p1_xml, xmlrpc], DepConfiguredApps = lists:flatmap( - fun({mysql, true}) -> [mysql]; - ({pgsql, true}) -> [pgsql]; - ({pam, true}) -> [epam]; - ({zlib, true}) -> [ezlib]; - ({stun, true}) -> [stun]; + fun({mysql, true}) -> [p1_mysql]; + ({pgsql, true}) -> [p1_pgsql]; + ({pam, true}) -> [p1_pam]; + ({zlib, true}) -> [p1_zlib]; + ({stun, true}) -> [p1_stun]; ({riak, true}) -> [riakc, riak_pb, protobuffs]; ({json, true}) -> [jiffy]; - ({iconv, true}) -> [iconv]; + ({iconv, true}) -> [p1_iconv]; ({http, true}) -> [ibrowse, lhttpc]; (_) -> [] end, Vars), |