aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Running-Meson.md
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-05-03 13:34:48 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-05-03 21:00:36 +1000
commit276d342ebaf859dd53e145ead3e98e2cebb360ab (patch)
treeb1fc9f5e62bd4a53a2eea9ee9f9b37a3fab805c1 /docs/markdown/Running-Meson.md
parent7ec6e6df2013aa65f99e0183c9d36b3ef3b7ab0e (diff)
downloadmeson-276d342ebaf859dd53e145ead3e98e2cebb360ab.zip
meson-276d342ebaf859dd53e145ead3e98e2cebb360ab.tar.gz
meson-276d342ebaf859dd53e145ead3e98e2cebb360ab.tar.bz2
docs: replace 'meson build' with 'meson builddir'
Clarifies that this is really just a directory, not a command. https://github.com/mesonbuild/meson/issues/1560
Diffstat (limited to 'docs/markdown/Running-Meson.md')
-rw-r--r--docs/markdown/Running-Meson.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Running-Meson.md b/docs/markdown/Running-Meson.md
index 5ae407e..d9847ac 100644
--- a/docs/markdown/Running-Meson.md
+++ b/docs/markdown/Running-Meson.md
@@ -15,8 +15,8 @@ Let us assume that we have a source tree that has a Meson build system. This mea
cd /path/to/source/root
- mkdir build
- cd build
+ mkdir builddir
+ cd builddir
meson ..
First we create a directory to hold all files generated during the build. Then we go into it and invoke Meson, giving it the location of the source root.