aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Creating-Linux-binaries.md
diff options
context:
space:
mode:
authorChris Mayo <aklhfex@gmail.com>2017-06-02 20:06:15 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-06-03 16:03:04 +0300
commit0e9852a457653cb01e477ec041281131b854fa82 (patch)
tree69f0717f6943df2e4db42ef99797f8dd3c31ac40 /docs/markdown/Creating-Linux-binaries.md
parente34edae240dd06b6ca1f5cb13fd722cf3129f4a1 (diff)
downloadmeson-0e9852a457653cb01e477ec041281131b854fa82.zip
meson-0e9852a457653cb01e477ec041281131b854fa82.tar.gz
meson-0e9852a457653cb01e477ec041281131b854fa82.tar.bz2
docs: Fix broken page links
Diffstat (limited to 'docs/markdown/Creating-Linux-binaries.md')
-rw-r--r--docs/markdown/Creating-Linux-binaries.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Creating-Linux-binaries.md b/docs/markdown/Creating-Linux-binaries.md
index 13940b5..3c48122 100644
--- a/docs/markdown/Creating-Linux-binaries.md
+++ b/docs/markdown/Creating-Linux-binaries.md
@@ -50,7 +50,7 @@ Old distros might have too old versions of some tools. For Meson this could incl
## Adding dependencies
-You want to embed and statically link every dependency you can (especially C++ dependencies). Meson's [Wrap package manager might be of use here](Wrap dependency system manual). This is equivalent to what you would do on Windows, OSX, Android etc. Sometimes static linking is not possible. In these cases you need to copy the .so files inside your package. Let's use SDL2 as an example. First we download and install it as usual giving it our custom install prefix (that is, `./configure --prefix=${HOME}/devroot`). This makes Meson's dependency detector pick it up automatically.
+You want to embed and statically link every dependency you can (especially C++ dependencies). Meson's [Wrap package manager](Wrap-dependency-system-manual.md) might be of use here. This is equivalent to what you would do on Windows, OSX, Android etc. Sometimes static linking is not possible. In these cases you need to copy the .so files inside your package. Let's use SDL2 as an example. First we download and install it as usual giving it our custom install prefix (that is, `./configure --prefix=${HOME}/devroot`). This makes Meson's dependency detector pick it up automatically.
## Building and installing