aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide/app.asciidoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/guide/app.asciidoc')
-rw-r--r--doc/src/guide/app.asciidoc7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/guide/app.asciidoc b/doc/src/guide/app.asciidoc
index 5c097f6..1320577 100644
--- a/doc/src/guide/app.asciidoc
+++ b/doc/src/guide/app.asciidoc
@@ -123,9 +123,10 @@ your situation.
Current version of the project.
`PROJECT_REGISTERED`::
List of the names of all registered processes.
-`OTP_DEPS`::
+`LOCAL_DEPS`::
List of Erlang/OTP applications this project depends on,
- excluding `erts`, `kernel` and `stdlib`.
+ excluding `erts`, `kernel` and `stdlib`, or list of
+ dependencies local to this repository (in `APPS_DIR`).
`DEPS`::
List of applications this project depends on that need
to be fetched by Erlang.mk.
@@ -140,7 +141,7 @@ PROJECT_DESCRIPTION = Small, fast, modular HTTP server.
PROJECT_VERSION = 2.0.0-pre.2
PROJECT_REGISTERED = cowboy_clock
-OTP_DEPS = crypto
+LOCAL_DEPS = crypto
DEPS = cowlib ranch
----