mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
385af01587
* rebar3 plugin to support configure-deps command
To allow running configure on dependencies prior to compilation, add a
rebar3 plugin to support the 'configure-deps' command introduced for
rebar2 in a7639fd4
* Fix compatibility with OTP < 23
binary_to_atom/1 is new to OTP 23
9 lines
184 B
Erlang
9 lines
184 B
Erlang
-module(configure_deps).
|
|
|
|
-export([init/1]).
|
|
|
|
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
|
|
init(State) ->
|
|
{ok, State1} = configure_deps_prv:init(State),
|
|
{ok, State1}.
|