INSTALL.md: specify build directory for (un)installation

Most meson command invocations specify the build directory
in the document, do the same for `meson install` and
uninstallation.
This commit is contained in:
Barnabás Pőcze 2022-06-15 15:39:07 +02:00 committed by Wim Taymans
parent f6ddac3f8e
commit c195b5eda0

View file

@ -92,11 +92,10 @@ systemctl --user stop pipewire.service \
## Installing
PipeWire comes with quite a bit of libraries and tools, run
inside `builddir`:
PipeWire comes with quite a bit of libraries and tools, run:
```
sudo meson install
sudo meson install -C builddir
```
to install everything onto the system into the specified prefix.
@ -221,8 +220,8 @@ sockets with the -a option. See `pipewire-pulse -h` for more info.
## Uninstalling
To uninstall, in the `builddir` directory run:
To uninstall, run:
```
sudo ninja uninstall
sudo ninja -C builddir uninstall
```