summaryrefslogtreecommitdiff
path: root/src/rebar_abnfc_compiler.erl
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-07-28 19:51:57 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-07-28 19:51:57 +0200
commit636c02f0be021b5d56fd29a562f80ed0f5cdff46 (patch)
tree80fd0fc561b493d315ca7945c1ccddc7cdce3f55 /src/rebar_abnfc_compiler.erl
parent2d62896de0072b6dfeda82156f77584eff37f880 (diff)
Fix R13B03 build (Reported-by: Sergey Nartimov)
Diffstat (limited to 'src/rebar_abnfc_compiler.erl')
-rw-r--r--src/rebar_abnfc_compiler.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_abnfc_compiler.erl b/src/rebar_abnfc_compiler.erl
index cb56854..0e6749a 100644
--- a/src/rebar_abnfc_compiler.erl
+++ b/src/rebar_abnfc_compiler.erl
@@ -90,7 +90,7 @@ compile_abnfc(Source, _Target, Config) ->
" https://github.com/nygge/abnfc~n"
" and install it into your erlang library dir~n"
"===============================================~n~n", []),
- ?ABORT;
+ ?FAIL;
true ->
AbnfcOpts = abnfc_opts(Config),
SourceExt = option(source_ext, AbnfcOpts),
@@ -103,6 +103,6 @@ compile_abnfc(Source, _Target, Config) ->
Error ->
?ERROR("Compiling grammar ~s failed:~n ~p~n",
[Source, Error]),
- ?ABORT
+ ?FAIL
end
end.