Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2014-02-22 02:34:48 +0400
committerHolger Weiss <holger@zedat.fu-berlin.de>2014-02-22 02:34:48 +0400
commit26dee37268aa3d710a244454595045beb5d53fd8 (patch)
treeb36e2d4783d051525c35df0fbdad27a7cc53abe9 /rebar.config.script
parent63a7011c38fb8ff967df68170da2abd8f2a9d37a (diff)
Fix --{enable,disable}-transient_supervisors flag
Fix configure's --{enable,disable}-transient_supervisors option: Make sure it's enabled with --enable and disabled with --disable, not the other way round. This also makes --disable the default setting, as documented.
Diffstat (limited to 'rebar.config.script')
-rw-r--r--rebar.config.script2
1 files changed, 1 insertions, 1 deletions
diff --git a/rebar.config.script b/rebar.config.script
index f342a6c90..7a5e332c4 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -16,7 +16,7 @@ Cfg = case file:consult("vars.config") of
Macros = lists:flatmap(
fun({roster_gateway_workaround, true}) ->
[{d, 'ROSTER_GATEWAY_WORKAROUND'}];
- ({transient_supervisors, true}) ->
+ ({transient_supervisors, false}) ->
[{d, 'NO_TRANSIENT_SUPERVISORS'}];
({nif, true}) ->
[{d, 'NIF'}];