diff options
author | Jan Janssen <medhefgo@web.de> | 2023-08-09 18:07:19 +0200 |
---|---|---|
committer | Jan Janssen <medhefgo@web.de> | 2023-08-23 14:45:02 +0200 |
commit | 9ee80846f8affff3452f3aa3524f2bb4364dab0b (patch) | |
tree | 52d145eccd3db87a19c0b995660336ffdd316587 /meson_options.txt | |
parent | meson: Use feature options (diff) | |
download | systemd-9ee80846f8affff3452f3aa3524f2bb4364dab0b.tar.xz systemd-9ee80846f8affff3452f3aa3524f2bb4364dab0b.zip |
meson: Convert fidsk to meson feature
By making this a disabler dependency, we can slightly simplify the code
and it als fixes the build for -Dfdisk=disabled as we failed to create a
fallback empty libshared_fdisk variable.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index 3e73520dd4..894116f750 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -373,7 +373,7 @@ option('audit', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : ' description : 'libaudit support') option('blkid', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' }, description : 'libblkid support') -option('fdisk', type : 'combo', choices : ['auto', 'true', 'false'], +option('fdisk', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' }, description : 'libfdisk support') option('kmod', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' }, description : 'support for loadable modules') |