diff options
author | Loïc Hoguin <[email protected]> | 2018-11-30 19:35:58 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-11-30 19:35:58 +0100 |
commit | fe225610451e5a56c1bcee220e55c45fd95bc9aa (patch) | |
tree | 1287f2fad049def28c6391b69704af91659c5f2b /doc | |
parent | 61f49af4759c7a1ab6ff1655d88f0144c97ab4f4 (diff) | |
download | erlang.mk-fe225610451e5a56c1bcee220e55c45fd95bc9aa.tar.gz erlang.mk-fe225610451e5a56c1bcee220e55c45fd95bc9aa.tar.bz2 erlang.mk-fe225610451e5a56c1bcee220e55c45fd95bc9aa.zip |
Document that DEPS has precedence over TEST_DEPS etc.
And a workaround to force a specific version to be downloaded.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/guide/deps.asciidoc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/src/guide/deps.asciidoc b/doc/src/guide/deps.asciidoc index 3ba7a39..9e78826 100644 --- a/doc/src/guide/deps.asciidoc +++ b/doc/src/guide/deps.asciidoc @@ -115,6 +115,14 @@ SHELL_DEPS = tddreloader All these will be documented in more details in their respective chapters. +Note that these additional types of dependencies will only +be fetched after normal dependencies by default. You can +force a dependency to be downloaded first by extending the +target `deps::` before including 'erlang.mk', for example: + +[source,make] +deps:: $(CURDIR)/deps/triq + ==== Modifying the dependency source or version By default, Erlang.mk will look into its package index to |