From bf631718935269ab5424c38a47423f97b508ad35 Mon Sep 17 00:00:00 2001 From: Tuncer Ayaz Date: Thu, 22 May 2014 11:54:26 +0200 Subject: Move include/rebar.hrl to src/rebar.hrl rebar.hrl is only meant to be used by src/*. --- include/rebar.hrl | 14 -------------- src/rebar.hrl | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 include/rebar.hrl create mode 100644 src/rebar.hrl diff --git a/include/rebar.hrl b/include/rebar.hrl deleted file mode 100644 index b19fdd3..0000000 --- a/include/rebar.hrl +++ /dev/null @@ -1,14 +0,0 @@ -%% TODO: rename FAIL to ABORT once we require at least R13B04 for -%% building rebar. Macros with different arity were not supported by the -%% compiler before 13B04. --define(FAIL, rebar_utils:abort()). --define(ABORT(Str, Args), rebar_utils:abort(Str, Args)). - --define(CONSOLE(Str, Args), io:format(Str, Args)). - --define(DEBUG(Str, Args), rebar_log:log(debug, Str, Args)). --define(INFO(Str, Args), rebar_log:log(info, Str, Args)). --define(WARN(Str, Args), rebar_log:log(warn, Str, Args)). --define(ERROR(Str, Args), rebar_log:log(standard_error, error, Str, Args)). - --define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))). diff --git a/src/rebar.hrl b/src/rebar.hrl new file mode 100644 index 0000000..b19fdd3 --- /dev/null +++ b/src/rebar.hrl @@ -0,0 +1,14 @@ +%% TODO: rename FAIL to ABORT once we require at least R13B04 for +%% building rebar. Macros with different arity were not supported by the +%% compiler before 13B04. +-define(FAIL, rebar_utils:abort()). +-define(ABORT(Str, Args), rebar_utils:abort(Str, Args)). + +-define(CONSOLE(Str, Args), io:format(Str, Args)). + +-define(DEBUG(Str, Args), rebar_log:log(debug, Str, Args)). +-define(INFO(Str, Args), rebar_log:log(info, Str, Args)). +-define(WARN(Str, Args), rebar_log:log(warn, Str, Args)). +-define(ERROR(Str, Args), rebar_log:log(standard_error, error, Str, Args)). + +-define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))). -- cgit v1.1