aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide/app.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-10-19 15:27:24 +0200
committerLoïc Hoguin <[email protected]>2015-10-19 15:27:24 +0200
commit5408a2add0538ce76f5a1d987f7ea84fcabbc504 (patch)
treee2fc6618ac0631c580ad26083ac327e40d2e8f2a /doc/src/guide/app.asciidoc
parentc0d6e890c184b5a35891358dc4733cd552e50dab (diff)
downloaderlang.mk-5408a2add0538ce76f5a1d987f7ea84fcabbc504.tar.gz
erlang.mk-5408a2add0538ce76f5a1d987f7ea84fcabbc504.tar.bz2
erlang.mk-5408a2add0538ce76f5a1d987f7ea84fcabbc504.zip
Remove mention of OTP_DEPS from the docs
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
----