From 26dee37268aa3d710a244454595045beb5d53fd8 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Fri, 21 Feb 2014 23:34:48 +0100 Subject: [PATCH] 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. --- rebar.config.script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'}];