diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2023-10-25 16:45:06 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2023-10-25 16:49:24 +0200 |
commit | dedb925eafee8214ae565b861dfacfc02085f158 (patch) | |
tree | 7ad56d23afa67d82e665e248882fe733e8dfbd4d /man/rules | |
parent | Merge pull request #29674 from poettering/unexport-marshal-blob (diff) | |
download | systemd-dedb925eafee8214ae565b861dfacfc02085f158.tar.xz systemd-dedb925eafee8214ae565b861dfacfc02085f158.zip |
meson: Always build bootctl
bootctl is rather useful to have, even if on a system without UEFI,
as it has a number of verbs that are unrelated to UEFI (e.g kernel-identify),
and more importantly, it supports --root to operate on directory trees
(which could be intended to be deployed on UEFI) so let's make sure we
always build it.
Diffstat (limited to 'man/rules')
-rw-r--r-- | man/rules/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/rules/meson.build b/man/rules/meson.build index 3265db9c2d..f664901ebb 100644 --- a/man/rules/meson.build +++ b/man/rules/meson.build @@ -5,7 +5,7 @@ # ninja -C build update-man-rules manpages = [ ['binfmt.d', '5', [], 'ENABLE_BINFMT'], - ['bootctl', '1', [], 'ENABLE_BOOTLOADER'], + ['bootctl', '1', [], ''], ['bootup', '7', [], ''], ['busctl', '1', [], ''], ['coredump.conf', '5', ['coredump.conf.d'], 'ENABLE_COREDUMP'], |