diff options
author | Jordan Wilberding <[email protected]> | 2013-10-15 09:49:36 -0700 |
---|---|---|
committer | Jordan Wilberding <[email protected]> | 2013-10-15 09:49:36 -0700 |
commit | 73502b0c33811455e0bbabc2692de191ddc5fc65 (patch) | |
tree | 62ef34c600455bde3d02f51c81fe962fb71171dd /src/relx.erl | |
parent | 9e390a7022b1f5296d4fdb7618d13d843ed26bde (diff) | |
parent | 750c3df605de8e7dc0f4d809e2fe7aa09827eee1 (diff) | |
download | relx-73502b0c33811455e0bbabc2692de191ddc5fc65.tar.gz relx-73502b0c33811455e0bbabc2692de191ddc5fc65.tar.bz2 relx-73502b0c33811455e0bbabc2692de191ddc5fc65.zip |
Merge pull request #68 from tsloughter/master
add optoin to use custom system_libs dir. This closes #64
Diffstat (limited to 'src/relx.erl')
-rw-r--r-- | src/relx.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/relx.erl b/src/relx.erl index 1ac91d9..6306559 100644 --- a/src/relx.erl +++ b/src/relx.erl @@ -201,6 +201,7 @@ opt_spec_list() -> "Provide an app name and a directory to override in the form <appname>:<app directory>"}, {config, $c, "config", {string, ""}, "The path to a config file"}, {overlay_vars, undefined, "overlay_vars", string, "Path to a file of overlay variables"}, + {system_libs, undefined, "system_libs", string, "Path to dir of Erlang system libs"}, {version, $v, "version", undefined, "Print relx version"}, {root_dir, $r, "root", string, "The project root directory"}]. |