aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Khramtsov <xramtsov@gmail.com>2013-07-14 04:07:39 -0700
committerEvgeny Khramtsov <xramtsov@gmail.com>2013-07-14 04:07:39 -0700
commit8fc5d867049f9abbe048932e3a2ab9232389eae4 (patch)
treeca63529ce1b3979170e75a43da68f3c624540607
parentAllow room member to get members list using XEP (diff)
parentrebar.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.script4
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