summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2020-12-11 11:33:39 +0100
committerLennart Poettering <lennart@poettering.net>2020-12-17 16:51:48 +0100
commit8b08be4052fa51a9ad0de8a6f9213efe4dac213d (patch)
tree710fb0a1db155393094eccd9fda1eca13eea9b0f /README
parent68f18549c551d677d97ebd18d27827e1613a06a7 (diff)
downloadsystemd-8b08be4052fa51a9ad0de8a6f9213efe4dac213d.tar.gz
tree-wide: suggest meson command lines instead of ninja ones
This only changes documentation. In various places we call "ninja" directly. I figured it would be safer to leave those in place for now, given the meson replacement commands lines appears to be supported in newer meson versions only.
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 5 insertions, 5 deletions
diff --git a/README b/README
index b1fbf284a1..39d4e5aa15 100644
--- a/README
+++ b/README
@@ -187,7 +187,7 @@ REQUIREMENTS:
polkit (optional)
To build in directory build/:
- meson build/ && ninja -C build
+ meson setup build/ && meson compile -C build/
Any configuration options can be specified as -Darg=value... arguments
to meson. After the build directory is initially configured, meson will
@@ -197,10 +197,10 @@ REQUIREMENTS:
their current values.
Useful commands:
- ninja -v some/target
- ninja test
- sudo ninja install
- DESTDIR=... ninja install
+ meson compile -v -C build/ some/target
+ meson test -C build/
+ sudo meson install -C build/
+ DESTDIR=... meson install -C build/
A tarball can be created with:
git archive --format=tar --prefix=systemd-222/ v222 | xz > systemd-222.tar.xz