summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/HACKING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/HACKING.md b/docs/HACKING.md
index a7ddfc0ca8..265f17e0d5 100644
--- a/docs/HACKING.md
+++ b/docs/HACKING.md
@@ -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 ..