diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2022-02-24 14:29:54 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2022-02-24 21:06:55 +0100 |
commit | baec7d782b07414f0c13ba3a0b0b526973e04923 (patch) | |
tree | 03c33959a113566cb24b1735d08bf95ce3803a56 /meson.build | |
parent | Merge pull request #22607 from yuwata/network-address-hash-func (diff) | |
download | systemd-baec7d782b07414f0c13ba3a0b0b526973e04923.tar.xz systemd-baec7d782b07414f0c13ba3a0b0b526973e04923.zip |
meson: Drop required libfdisk version to 2.32
We initially pinned this to 2.33 in
e71f5585b9b0580428f9530d0a485265c9c25165 because libfdisk 2.32 in
CentOS 8 didn't have
https://github.com/karelzak/util-linux/commit/2f35c1ead621f42f32f7777232568cb03185b473
backported.
If we check now, we can see it has been backported
(https://git.centos.org/rpms/util-linux/blob/c8s/f/SOURCES/0048-libfdisk-count-gaps-to-possible-size-when-resize.patch)
which means we can drop the required version to 2.32 instead of 2.33.
Diffstat (limited to '')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 371a9ce751..905ed07f75 100644 --- a/meson.build +++ b/meson.build @@ -1052,7 +1052,7 @@ libmount = dependency('mount', want_libfdisk = get_option('fdisk') if want_libfdisk != 'false' and not skip_deps libfdisk = dependency('fdisk', - version : '>= 2.33', + version : '>= 2.32', required : want_libfdisk == 'true') have = libfdisk.found() else |