diff options
author | Eric Merritt <[email protected]> | 2013-09-20 21:44:57 -0700 |
---|---|---|
committer | Eric Merritt <[email protected]> | 2013-09-20 21:44:57 -0700 |
commit | ca0370134cea77ea91555db136d6a144bb1b78c6 (patch) | |
tree | da263680b3ecb28ff8723e4ac0ca4a0e5b99b92f /src/relx.erl | |
parent | 2ef124bf890d98a4b71cafd89c280c8c084bc300 (diff) | |
parent | 21056c6af7e0be26f49ed3c72fe297c56a2737bc (diff) | |
download | relx-ca0370134cea77ea91555db136d6a144bb1b78c6.tar.gz relx-ca0370134cea77ea91555db136d6a144bb1b78c6.tar.bz2 relx-ca0370134cea77ea91555db136d6a144bb1b78c6.zip |
Merge pull request #49 from tsloughter/master
replace confusing disable-default-libs option with default-libs true or false
Diffstat (limited to 'src/relx.erl')
-rw-r--r-- | src/relx.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/relx.erl b/src/relx.erl index 2aac8e4..f6575a1 100644 --- a/src/relx.erl +++ b/src/relx.erl @@ -192,9 +192,9 @@ opt_spec_list() -> "Additional dir that should be searched for OTP Apps"}, {path, $p, "path", string, "Additional dir to add to the code path"}, - {disable_default_libs, undefined, "disable-default-libs", - {boolean, false}, - "Disable the default system added lib dirs (means you must add them all manually"}, + {default_libs, undefined, "default-libs", + {boolean, true}, + "Whether to use the default system added lib dirs (means you must add them all manually). Default is true"}, {log_level, $V, "verbose", {integer, 1}, "Verbosity level, maybe between 0 and 2"}, {override_app, $a, "override_app", string, |