diff options
author | Michael Mera <dev@michaelmera.com> | 2018-05-27 17:14:56 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-05-27 23:49:16 +0300 |
commit | 1ff15f527b4aeb05874a729e5bb1c143c8cf6768 (patch) | |
tree | e888563096d9b5a6666fc81448178c55b0b2fa93 | |
parent | 320a5865d91d8ac3e897d7ee15f29a898f091eed (diff) | |
download | meson-1ff15f527b4aeb05874a729e5bb1c143c8cf6768.zip meson-1ff15f527b4aeb05874a729e5bb1c143c8cf6768.tar.gz meson-1ff15f527b4aeb05874a729e5bb1c143c8cf6768.tar.bz2 |
Make install doc less surprising for new users [skip ci]
-rw-r--r-- | docs/markdown/Running-Meson.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/markdown/Running-Meson.md b/docs/markdown/Running-Meson.md index 14b2d19..7db22bf 100644 --- a/docs/markdown/Running-Meson.md +++ b/docs/markdown/Running-Meson.md @@ -132,6 +132,9 @@ Installing the built software is just as simple. ninja install +Note that Meson will only install build targets explicitly tagged as +installable, as detailed in the [installing targets documentation](Installing.md). + By default Meson installs to `/usr/local`. This can be changed by passing the command line argument `--prefix /your/prefix` to Meson during configure time. Meson also supports the `DESTDIR` variable used |