]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commit
kea: fix installation umask to 0022 of meson.
authorLiu Yiding <liuyd.fnst@fujitsu.com>
Mon, 20 Oct 2025 02:39:55 +0000 (10:39 +0800)
committerMathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Wed, 22 Oct 2025 16:17:27 +0000 (18:17 +0200)
commit4b9c51eb2346e38b764d4e6f5fe2265f50992c1a
treee3975bca75ac8f77d874b5c750a03f99f255867d
parent72e9fbc0b719f1436870b1add8d0817b93d1e642
kea: fix installation umask to 0022 of meson.

The default installation umask is 0027 for Kea-built artifacts.

And it caused package conflicts as following:
Error: Transaction test error:
  file /usr/lib/pkgconfig conflicts between attempted installs of kea-dev-3.0.1-r0.x86_64_v3 and btrfs-tools-dev-6.16-r0.x86_64_v3
  file /usr/lib/pkgconfig conflicts between attempted installs of libgcrypt-dev-1.11.2-r0.x86_64_v3 and kea-dev-3.0.1-r0.x86_64_v3

I submitted an issue to the upstream and found upstream alreadly known this issue.
https://gitlab.isc.org/isc-projects/kea/-/issues/4171
https://gitlab.isc.org/isc-projects/kea/-/issues/3993

Then I follow the method in the SPEC file of upstream to fix this problem in Yocto.
https://gitlab.isc.org/isc-projects/kea-packaging/-/blob/master/rpm/kea.spec?ref_type=heads
meson setup build \
--buildtype release \
--install-umask 0022 \
--bindir %{_bindir} \

Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
meta/recipes-connectivity/kea/kea_3.0.1.bb