aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-05-03 13:41:30 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-05-03 20:12:29 +1000
commitea127d55946e5ea74278aa525c3868a5d3273710 (patch)
tree795ab1851d4aa34cce74eb2b817d6937a9a44df1 /docs/markdown
parentaed341f7e59b1db73a1529a14952591263f9107a (diff)
downloadmeson-ea127d55946e5ea74278aa525c3868a5d3273710.zip
meson-ea127d55946e5ea74278aa525c3868a5d3273710.tar.gz
meson-ea127d55946e5ea74278aa525c3868a5d3273710.tar.bz2
docs: fix missing build directory
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/Using-multiple-build-directories.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Using-multiple-build-directories.md b/docs/markdown/Using-multiple-build-directories.md
index cabd64f..f9e3e09 100644
--- a/docs/markdown/Using-multiple-build-directories.md
+++ b/docs/markdown/Using-multiple-build-directories.md
@@ -20,7 +20,7 @@ The first thing to do is to set up the default build, that is, the one we are go
Another common setup is to build with debug and optimizations to, for example, run performance tests. Setting this up is just as simple.
mkdir buildopt
- meson --buildtype=debugoptimized
+ meson --buildtype=debugoptimized buildopt
For systems where the default compiler is GCC, we would like to compile with Clang, too. So let's do that.