summaryrefslogtreecommitdiff
path: root/docs/markdown/Configuring-a-build-directory.md
diff options
context:
space:
mode:
authorKevin Anderson <andersonkw2@gmail.com>2017-10-22 17:06:15 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2017-10-23 18:43:39 +0200
commit562c50f229cfe0a28abdfc2c56360f5a82c83b57 (patch)
treeb32c0e1f93a856d3d2bc4265b4b8a996a58c1f21 /docs/markdown/Configuring-a-build-directory.md
parent92866d8d5f50b6133be4b53d989665dedd89dd52 (diff)
downloadmeson-562c50f229cfe0a28abdfc2c56360f5a82c83b57.tar.gz
Update references from mesonconf to meson configure
Fixes #2372
Diffstat (limited to 'docs/markdown/Configuring-a-build-directory.md')
-rw-r--r--docs/markdown/Configuring-a-build-directory.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/Configuring-a-build-directory.md b/docs/markdown/Configuring-a-build-directory.md
index edf3d97e7..774addf6f 100644
--- a/docs/markdown/Configuring-a-build-directory.md
+++ b/docs/markdown/Configuring-a-build-directory.md
@@ -9,11 +9,11 @@ generated. For example you might want to change from a debug build
into a release build, set custom compiler flags, change the build
options provided in your `meson_options.txt` file and so on.
-The main tool for this is the `mesonconf` script. You may also use the
+The main tool for this is the `meson configure` command. You may also use the
`mesongui` graphical application if you want. However this document
describes the use of the command line client.
-You invoke `mesonconf` by giving it the location of your build dir. If
+You invoke `meson configure` by giving it the location of your build dir. If
omitted, the current working directory is used instead. Here's a
sample output for a simple project.
@@ -56,7 +56,7 @@ the option. To set an option you use the `-D` option. For example,
changing the installation prefix from `/usr/local` to `/tmp/testroot`
you would issue the following command.
- mesonconf -Dprefix=/tmp/testroot
+ meson configure -Dprefix=/tmp/testroot
Then you would run your build command (usually `ninja`), which would
cause Meson to detect that the build setup has changed and do all the