summaryrefslogtreecommitdiff
path: root/docs/guide/getting-started
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-10-15 11:55:53 +0000
committerAylur <[email protected]>2024-10-15 11:55:53 +0000
commitfe11c037bad45697451b7264ff93fa37f1fac78f (patch)
treee84ae7a0bb789e7764005259fe3485e3a3462c49 /docs/guide/getting-started
parentdde50e333a237efb4ddaf522398dedf1a69999d1 (diff)
docs: recommend /usr prefix by default
Diffstat (limited to 'docs/guide/getting-started')
-rw-r--r--docs/guide/getting-started/installation.md14
1 files changed, 1 insertions, 13 deletions
diff --git a/docs/guide/getting-started/installation.md b/docs/guide/getting-started/installation.md
index 6ad951a..96cbdfa 100644
--- a/docs/guide/getting-started/installation.md
+++ b/docs/guide/getting-started/installation.md
@@ -56,7 +56,7 @@ sudo apt install meson valac libgtk-3-dev libgtk-layer-shell-dev gobject-introsp
```sh
cd lib/astal/io
-meson setup build
+meson setup --prefix /usr build
meson install -C build
```
@@ -64,18 +64,6 @@ meson install -C build
```sh
cd lib/astal/gtk3
-meson setup build
-meson install -C build
-```
-
-:::tip
-Most distros recommend manual installs in `/usr/local`,
-which is what `meson` defaults to. If you want to install to `/usr`
-instead which most package managers do, set the `prefix` option:
-
-```sh
meson setup --prefix /usr build
meson install -C build
```
-
-:::