diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-08-16 16:12:35 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-08-16 16:18:18 -0400 |
commit | 25b0988d4e40d22d907169b4f73ff07b4cb7fd0e (patch) | |
tree | b5cdc4588cc1856a00126fb28d09b4fbd1bb9079 /docs/markdown/Quick-guide.md | |
parent | 33a5352e3c56c3d245aed48005515f097ab2ab53 (diff) | |
download | meson-25b0988d4e40d22d907169b4f73ff07b4cb7fd0e.zip meson-25b0988d4e40d22d907169b4f73ff07b4cb7fd0e.tar.gz meson-25b0988d4e40d22d907169b4f73ff07b4cb7fd0e.tar.bz2 |
docs: fix various references to "meson builddir"
This is wrong, it should use "meson setup builddir".
Diffstat (limited to 'docs/markdown/Quick-guide.md')
-rw-r--r-- | docs/markdown/Quick-guide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Quick-guide.md b/docs/markdown/Quick-guide.md index c1de820..3a86904 100644 --- a/docs/markdown/Quick-guide.md +++ b/docs/markdown/Quick-guide.md @@ -75,7 +75,7 @@ Troubleshooting: -- Common Issues: ```console -$ meson builddir +$ meson setup builddir $ bash: /usr/bin/meson: No such file or directory ``` @@ -102,7 +102,7 @@ are working on. The steps to take are very simple. ```console $ cd /path/to/source/root -$ meson builddir && cd builddir +$ meson setup builddir && cd builddir $ meson compile $ meson test ``` |