]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
docs: Explicitly tell developers to enable mkosi required meson options
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Thu, 23 Mar 2023 10:15:29 +0000 (11:15 +0100)
committerLuca Boccassi <luca.boccassi@gmail.com>
Thu, 23 Mar 2023 13:09:09 +0000 (13:09 +0000)
We need repart, bootctl, analyze and ukify for mkosi so let's make
sure those get built in the HACKING guide.

docs/HACKING.md

index a7ddfc0ca8eb6f857a2611b39fba26bafe4b4d3b..265f17e0d59095b64e140ee9cfd329c7bf8aace1 100644 (file)
@@ -88,7 +88,7 @@ $ git clone https://github.com/systemd/systemd.git
 $ cd systemd
 $ git checkout -b <BRANCH>        # where BRANCH is the name of the branch
 $ vim src/core/main.c             # or wherever you'd like to make your changes
-$ meson build                     # configure the build
+$ meson setup build -Danalyze=true -Drepart=true -Defi=true -Dbootloader=true -Dukify=true # configure the build
 $ ninja -C build                  # build it locally, see if everything compiles fine
 $ meson test -C build             # run some simple regression tests
 $ cd ..