| Message ID | 20251023020636.2817-2-liuyd.fnst@fujitsu.com |
|---|---|
| State | Accepted, archived |
| Commit | df3f4196693ae82bddebe134f3af0db92e5d5712 |
| Headers | show |
| Series | kea: Fix EXTRA_OE config to EXTRA_OEMESON and installation umask of meson | expand |
Hi Yiding Liu, On 10/23/25 4:06 AM, Yiding Liu (Fujitsu) via lists.openembedded.org wrote: > After kea has been upgrade to 3.0.1,the build system changed to meson,but the config of build system is still be EXTRA_OECONF. So this commit fix it. > Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> Thanks! Quentin
diff --git a/meta/recipes-connectivity/kea/kea_3.0.1.bb b/meta/recipes-connectivity/kea/kea_3.0.1.bb index cc34c05093..2dca645cdb 100644 --- a/meta/recipes-connectivity/kea/kea_3.0.1.bb +++ b/meta/recipes-connectivity/kea/kea_3.0.1.bb @@ -26,7 +26,7 @@ SRC_URI[sha256sum] = "ec84fec4bb7f6b9d15a82e755a571e9348eb4d6fbc62bb3f6f1296cd7a inherit meson pkgconfig systemd update-rc.d upstream-version-is-even -EXTRA_OECONF += "-Dcrypto=openssl -Drunstatedir=${runtimedir} -Dkrb5=disabled -Dnetconf=disabled" +EXTRA_OEMESON += "-Dcrypto=openssl -Drunstatedir=${runtimedir} -Dkrb5=disabled -Dnetconf=disabled" INITSCRIPT_NAME = "kea-dhcp4-server" INITSCRIPT_PARAMS = "defaults 30" @@ -72,6 +72,8 @@ do_install:append() { -e "s:${S}:@abs_top_srcdir_placeholder@:g" \ ${D}${sbindir}/kea-admin rm -rf ${D}${datadir}/${BPN}/meson-info + # Remove /run as it is created on startup + rm -rf ${D}${runtimedir} } do_install:append() {
After kea has been upgrade to 3.0.1,the build system changed to meson,but the config of build system is still be EXTRA_OECONF. So this commit fix it. Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> --- meta/recipes-connectivity/kea/kea_3.0.1.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)