aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide/getting_started.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-12-30 01:57:58 +0100
committerLoïc Hoguin <[email protected]>2015-12-30 01:57:58 +0100
commit8a2f44eb607d53f5627df53438b2e9ad3b81409c (patch)
tree2ebf5b4ea7a48b7fb1ab9974dcaf804486828d5b /doc/src/guide/getting_started.asciidoc
parent5f0cfebad65f0d228b0d962b28dde0436ed9ffac (diff)
downloaderlang.mk-8a2f44eb607d53f5627df53438b2e9ad3b81409c.tar.gz
erlang.mk-8a2f44eb607d53f5627df53438b2e9ad3b81409c.tar.bz2
erlang.mk-8a2f44eb607d53f5627df53438b2e9ad3b81409c.zip
Replace broken links with cross references
Diffstat (limited to 'doc/src/guide/getting_started.asciidoc')
-rw-r--r--doc/src/guide/getting_started.asciidoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/guide/getting_started.asciidoc b/doc/src/guide/getting_started.asciidoc
index 8a01ac0..04147b0 100644
--- a/doc/src/guide/getting_started.asciidoc
+++ b/doc/src/guide/getting_started.asciidoc
@@ -75,7 +75,7 @@ rm -rf .erlang.mk.build
This is Erlang.mk bootstrapping itself. Indeed, the file you
initially downloaded contains nothing more than the code needed
to bootstrap. This operation is done only once. Consult the
-link:updating.asciidoc[Updating Erlang.mk] chapter for more
+xref:updating[Updating Erlang.mk] chapter for more
information.
Of course, the generated project can now be compiled:
@@ -126,7 +126,7 @@ $ make -f erlang.mk bootstrap-lib bootstrap-rel
It is often very useful to keep the top-level project for
commands useful during operations, and put the components
of the system in separate applications that you will then
-depend on. Consult the link:deps.asciidoc[Packages and dependencies]
+depend on. Consult the xref:deps[Packages and dependencies]
chapter for more information.
When you run `make` from now on, Erlang.mk will compile your
@@ -151,7 +151,7 @@ _relx_, the release building tool. So don't worry if you see
more output than above.
If building the release is slow, no need to upgrade your
-hardware just yet. Just consult the link:relx.asciidoc[Releases]
+hardware just yet. Just consult the xref:relx[Releases]
chapter for various tips to speed up build time during
development.