summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2022-10-27 03:23:06 -0500
committerGary Kramlich <grim@reaperworld.com>2022-10-27 03:23:06 -0500
commit354ab81700e96bba55ba28e35de354e14df0128f (patch)
tree310a353b8e196c69625630879dcd613e2882360e /README
parent9a6caac5519a232570d5aaac74804a26e41f3944 (diff)
downloadpidgin-354ab81700e96bba55ba28e35de354e14df0128f.tar.gz
Update the documentation to use meson setup instead of a bare meson
Using a bare `meson` to configure a build directory has been deprecated in meson 0.64.0. The command has been around forever, so there's no harm in making our documentation mention it for versions before 0.64.0. Testing Done: None Reviewed at https://reviews.imfreedom.org/r/1982/
Diffstat (limited to 'README')
-rw-r--r--README6
1 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index d64dc47d2a..2c56feb66f 100644
--- a/README
+++ b/README
@@ -27,7 +27,7 @@ soon, if you have any suggestions on how to handle this, please let us know.
You can quickly build Pidgin with the following commands:
```
-meson build
+meson setup build
cd build
ninja
ninja install
@@ -38,10 +38,10 @@ There are quite a few options for the build that you can view by running
running meson like the following:
```
-meson -Ddebug=true build
+meson setup -Ddebug=true build
```
-If you have already run `meson` you can use `meson configure`:
+If you have already run `meson setup` you can use `meson configure`:
```
cd build