diff options
author | Michal Sekletar <msekleta@redhat.com> | 2021-08-30 18:38:09 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-09-20 17:41:23 +0200 |
commit | 34357545590d4791d1acbbeb07ae8f7636e187cb (patch) | |
tree | b73b0bf2fafc7a85b90cf5db5e4642862d98f302 /shell-completion | |
parent | hwdb: add touchpad fuzz for Asus UX362FA (#20770) (diff) | |
download | systemd-34357545590d4791d1acbbeb07ae8f7636e187cb.tar.xz systemd-34357545590d4791d1acbbeb07ae8f7636e187cb.zip |
boot: don't build bootctl when -Dgnu-efi=false is set
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/bash/meson.build | 2 | ||||
-rw-r--r-- | shell-completion/zsh/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/bash/meson.build b/shell-completion/bash/meson.build index 0946bc5b54..1196795814 100644 --- a/shell-completion/bash/meson.build +++ b/shell-completion/bash/meson.build @@ -33,7 +33,7 @@ items = [['busctl', ''], ['systemd-run', ''], ['udevadm', ''], ['kernel-install', ''], - ['bootctl', 'ENABLE_EFI'], + ['bootctl', 'HAVE_GNU_EFI'], ['coredumpctl', 'ENABLE_COREDUMP'], ['homectl', 'ENABLE_HOMED'], ['hostnamectl', 'ENABLE_HOSTNAMED'], diff --git a/shell-completion/zsh/meson.build b/shell-completion/zsh/meson.build index ce3a304d45..31d9a39ccf 100644 --- a/shell-completion/zsh/meson.build +++ b/shell-completion/zsh/meson.build @@ -28,7 +28,7 @@ items = [['_busctl', ''], ['_sd_outputmodes', ''], ['_sd_unit_files', ''], ['_sd_machines', ''], - ['_bootctl', 'ENABLE_EFI'], + ['_bootctl', 'HAVE_GNU_EFI'], ['_coredumpctl', 'ENABLE_COREDUMP'], ['_hostnamectl', 'ENABLE_HOSTNAMED'], ['_localectl', 'ENABLE_LOCALED'], |