24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-12 21:52:07 +02:00

Merge pull request #82 from tuncer/rebar-debug_info

rebar.config.script: fix debug_info handling
This commit is contained in:
Evgeny Khramtsov 2013-07-14 04:07:39 -07:00
commit 8fc5d86704

View File

@ -30,9 +30,9 @@ Macros = lists:flatmap(
DebugInfo = case lists:keysearch(debug, 1, Cfg) of DebugInfo = case lists:keysearch(debug, 1, Cfg) of
{value, {debug, true}} -> {value, {debug, true}} ->
[debug_info]; [];
_ -> _ ->
[] [no_debug_info]
end, end,
HiPE = case lists:keysearch(hipe, 1, Cfg) of HiPE = case lists:keysearch(hipe, 1, Cfg) of