summaryrefslogtreecommitdiff
path: root/docs/markdown/IndepthTutorial.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/IndepthTutorial.md
parent7ec6e6df2013aa65f99e0183c9d36b3ef3b7ab0e (diff)
downloadmeson-276d342ebaf859dd53e145ead3e98e2cebb360ab.tar.gz
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/IndepthTutorial.md')
-rw-r--r--docs/markdown/IndepthTutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/IndepthTutorial.md b/docs/markdown/IndepthTutorial.md
index d67adf7c9..dd93f826b 100644
--- a/docs/markdown/IndepthTutorial.md
+++ b/docs/markdown/IndepthTutorial.md
@@ -78,7 +78,7 @@ At this point we can return to the pkg-config generator line. All shared librari
With these four files we are done. To configure, build and run the test suite, we just need to execute the following commands (starting at source tree root directory).
```console
-$ meson build && cd build
+$ meson builddir && cd builddir
$ ninja
$ ninja test
```