diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-05-03 18:27:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-03 18:27:29 +0300 |
commit | 2bb03f19fd9842d8c7966336ee967786f8edfbda (patch) | |
tree | 707f00e4b355d30c6d4d0de23e3364bf82b6c35d /docs/markdown/Running-Meson.md | |
parent | 33b79dcf2502420c0db806fece1b35c724366f40 (diff) | |
parent | 276d342ebaf859dd53e145ead3e98e2cebb360ab (diff) | |
download | meson-2bb03f19fd9842d8c7966336ee967786f8edfbda.zip meson-2bb03f19fd9842d8c7966336ee967786f8edfbda.tar.gz meson-2bb03f19fd9842d8c7966336ee967786f8edfbda.tar.bz2 |
Merge pull request #1725 from whot/master
documentation fixes
Diffstat (limited to 'docs/markdown/Running-Meson.md')
-rw-r--r-- | docs/markdown/Running-Meson.md | 4 |
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. |