diff options
author | Evgeny Khramtsov <xramtsov@gmail.com> | 2013-07-14 04:07:39 -0700 |
---|---|---|
committer | Evgeny Khramtsov <xramtsov@gmail.com> | 2013-07-14 04:07:39 -0700 |
commit | 8fc5d867049f9abbe048932e3a2ab9232389eae4 (patch) | |
tree | ca63529ce1b3979170e75a43da68f3c624540607 | |
parent | Allow room member to get members list using XEP (diff) | |
parent | rebar.config.script: fix debug_info handling (diff) |
Merge pull request #82 from tuncer/rebar-debug_info
rebar.config.script: fix debug_info handling
-rw-r--r-- | rebar.config.script | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rebar.config.script b/rebar.config.script index 27029020a..a814506e5 100644 --- a/rebar.config.script +++ b/rebar.config.script @@ -30,9 +30,9 @@ Macros = lists:flatmap( DebugInfo = case lists:keysearch(debug, 1, Cfg) of {value, {debug, true}} -> - [debug_info]; + []; _ -> - [] + [no_debug_info] end, HiPE = case lists:keysearch(hipe, 1, Cfg) of |