diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-05-16 18:49:04 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-05-19 03:25:26 +0200 |
commit | fd3a3e31b3f4a6760780c01fe13163159b6ccec1 (patch) | |
tree | 2ddd280402f75ea9140e2ba36126c774dee4d639 /man/custom-entities.ent.in | |
parent | meson: use jinja2 also for custom-entities.ent (diff) | |
download | systemd-fd3a3e31b3f4a6760780c01fe13163159b6ccec1.tar.xz systemd-fd3a3e31b3f4a6760780c01fe13163159b6ccec1.zip |
meson: drop "_YES_NO" variables
We can generate the right string in the template directly.
Diffstat (limited to 'man/custom-entities.ent.in')
-rw-r--r-- | man/custom-entities.ent.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man/custom-entities.ent.in b/man/custom-entities.ent.in index 9c6a2d0558..d8612b226e 100644 --- a/man/custom-entities.ent.in +++ b/man/custom-entities.ent.in @@ -7,8 +7,8 @@ <!ENTITY userenvgeneratordir "{{USER_ENV_GENERATOR_DIR}}"> <!ENTITY CERTIFICATE_ROOT "{{CERTIFICATE_ROOT}}"> <!ENTITY FALLBACK_HOSTNAME "{{FALLBACK_HOSTNAME}}"> -<!ENTITY MEMORY_ACCOUNTING_DEFAULT "{{MEMORY_ACCOUNTING_DEFAULT_YES_NO}}"> -<!ENTITY KILL_USER_PROCESSES "{{KILL_USER_PROCESSES_YES_NO}}"> +<!ENTITY MEMORY_ACCOUNTING_DEFAULT "{{ 'yes' if MEMORY_ACCOUNTING_DEFAULT else 'no' }}"> +<!ENTITY KILL_USER_PROCESSES "{{ 'yes' if KILL_USER_PROCESSES else 'no' }}"> <!ENTITY DEBUGTTY "{{DEBUGTTY}}"> <!ENTITY RC_LOCAL_PATH "{{RC_LOCAL_PATH}}"> <!ENTITY fedora_latest_version "34"> |