From c195b5eda03560012e61ae4de28dd152e3a0fbc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Wed, 15 Jun 2022 15:39:07 +0200 Subject: [PATCH] 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. --- INSTALL.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index b8dbf8c00..29e1f739a 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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 ```