diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-11-08 08:31:13 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2023-11-13 14:27:31 +0100 |
commit | 2233035275d3d1575f101161309ac116838db558 (patch) | |
tree | 2f4606577dd770e8fe9c680d59a1e13da2344b48 /meson.build | |
parent | Merge pull request #29996 from keszybz/ukify-summary-and-sbom-sections (diff) | |
download | systemd-2233035275d3d1575f101161309ac116838db558.tar.xz systemd-2233035275d3d1575f101161309ac116838db558.zip |
meson: fix printing of first-boot-full-preset
The meson summary logic checks for ENABLE_* and HAVE_*, but we used a define
with no prefix. Let's make it ENABLE_… for consistency with other config
options. Obviously this also fixes the summary output.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 32a181e50d..373d0c1617 100644 --- a/meson.build +++ b/meson.build @@ -288,7 +288,7 @@ conf.set('DEFAULT_TIMEOUT_SEC', get_option('defaul conf.set('DEFAULT_USER_TIMEOUT_SEC', get_option('default-user-timeout-sec')) conf.set('UPDATE_HELPER_USER_TIMEOUT_SEC', get_option('update-helper-user-timeout-sec')) -conf.set10('FIRST_BOOT_FULL_PRESET', get_option('first-boot-full-preset')) +conf.set10('ENABLE_FIRST_BOOT_FULL_PRESET', get_option('first-boot-full-preset')) ##################################################################### |