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 /shell-completion/zsh/meson.build | |
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 'shell-completion/zsh/meson.build')
-rw-r--r-- | shell-completion/zsh/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/zsh/meson.build b/shell-completion/zsh/meson.build index 6703204ec2..ebe79f3985 100644 --- a/shell-completion/zsh/meson.build +++ b/shell-completion/zsh/meson.build @@ -27,7 +27,7 @@ items = [['_busctl', ''], ['_sd_outputmodes', ''], ['_sd_unit_files', ''], ['_sd_machines', ''], - ['_bootctl', 'ENABLE_BOOTLOADER'], + ['_bootctl', ''], ['_coredumpctl', 'ENABLE_COREDUMP'], ['_hostnamectl', 'ENABLE_HOSTNAMED'], ['_localectl', 'ENABLE_LOCALED'], |