From: Jakov Smolic Date: Wed, 15 Apr 2020 15:58:25 +0000 (+0200) Subject: Include new configure options in features list X-Git-Tag: v246-rc1~581^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F15441%2Fhead;p=thirdparty%2Fsystemd.git Include new configure options in features list Signed-off-by: Jakov Smolic Signed-off-by: Luka Perkov --- diff --git a/meson.build b/meson.build index 8a9f4d08ed0..209971cc100 100644 --- a/meson.build +++ b/meson.build @@ -3500,6 +3500,8 @@ foreach tuple : [ ['link-systemctl-shared', get_option('link-systemctl-shared')], ['link-networkd-shared', get_option('link-networkd-shared')], ['link-timesyncd-shared', get_option('link-timesyncd-shared')], + ['kernel-install', get_option('kernel-install')], + ['systemd-analyze', get_option('analyze')], ] if tuple.length() >= 2 diff --git a/meson_options.txt b/meson_options.txt index 5daed215984..3526645a590 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -363,6 +363,6 @@ option('oss-fuzz', type : 'boolean', value : 'false', option('llvm-fuzz', type : 'boolean', value : 'false', description : 'build against LLVM libFuzzer') option('kernel-install', type: 'boolean', value: 'true', - description : 'include kernel-install feature') + description : 'install kernel-install and associated files') option('analyze', type: 'boolean', value: 'true', - description : 'include systemd-analyze') + description : 'install systemd-analyze')