diff options
author | Tristan Sloughter <[email protected]> | 2013-09-20 19:49:28 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2013-09-20 21:55:29 -0500 |
commit | 21056c6af7e0be26f49ed3c72fe297c56a2737bc (patch) | |
tree | da263680b3ecb28ff8723e4ac0ca4a0e5b99b92f /src/rlx_state.erl | |
parent | 2ef124bf890d98a4b71cafd89c280c8c084bc300 (diff) | |
download | relx-21056c6af7e0be26f49ed3c72fe297c56a2737bc.tar.gz relx-21056c6af7e0be26f49ed3c72fe297c56a2737bc.tar.bz2 relx-21056c6af7e0be26f49ed3c72fe297c56a2737bc.zip |
replace confusing disable-default-libs option with default-libs true or false
Diffstat (limited to 'src/rlx_state.erl')
-rw-r--r-- | src/rlx_state.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlx_state.erl b/src/rlx_state.erl index b35baf3..4c6df07 100644 --- a/src/rlx_state.erl +++ b/src/rlx_state.erl @@ -135,8 +135,8 @@ new(PropList, Targets) default_configured_release={proplists:get_value(relname, PropList, undefined), proplists:get_value(relvsn, PropList, undefined)}}, rlx_state:put(create_logic_providers(State0), - disable_default_libs, - proplists:get_value(disable_default_libs, PropList, false)). + default_libs, + proplists:get_value(default_libs, PropList, true)). %% @doc the actions targeted for this system -spec actions(t()) -> [action()]. |