aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-04-25 10:26:22 +1000
committerJussi Pakkanen <jpakkane@gmail.com>2017-04-28 22:36:15 +0300
commitf3be687cbbfd1ff25c7ec4ffe8ba4adfee9a6579 (patch)
treecf036d14380b9d439506aeaebc08c89468ea2647 /README.md
parentfbbd7289db32b50a4bb6044b064310d03cee9b7e (diff)
downloadmeson-f3be687cbbfd1ff25c7ec4ffe8ba4adfee9a6579.zip
meson-f3be687cbbfd1ff25c7ec4ffe8ba4adfee9a6579.tar.gz
meson-f3be687cbbfd1ff25c7ec4ffe8ba4adfee9a6579.tar.bz2
Use 'builddir' instead of 'build' in the README
Clarifies that this is really just a directory, not a command. https://github.com/mesonbuild/meson/issues/1560
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index b24ce5f..3c6c397 100644
--- a/README.md
+++ b/README.md
@@ -60,11 +60,11 @@ You can omit either of the two directories, and Meson will substitute
the current directory and autodetect what you mean. This allows you to
do things like this:
-`cd source_root; mkdir build; cd build; meson ..`
+`cd source_root; mkdir builddir; cd builddir; meson ..`
or
-`cd source_root; mkdir build; meson build`
+`cd source_root; mkdir builddir; meson builddir`
To compile, cd into your build directory and type `ninja`. To run unit
tests, type `ninja test`.