diff mbox series

[master,2/2] libnl: update for 3.9.0

Message ID 20240201174029.2592430-2-denis@denix.org
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series [master,1/2] weston: update to version 13 | expand

Commit Message

Denys Dmytriyenko Feb. 1, 2024, 5:40 p.m. UTC
From: Denys Dmytriyenko <denys@konsulko.com>

Update bbappend for 3.9.0 release. The location of the private headers has
changed slightly, adjust accordingly.

Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
---
 .../libnl/{libnl_3.7.0.bbappend => libnl_3.9.0.bbappend}   | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
 rename meta-arago-distro/recipes-support/libnl/{libnl_3.7.0.bbappend => libnl_3.9.0.bbappend} (22%)
diff mbox series

Patch

diff --git a/meta-arago-distro/recipes-support/libnl/libnl_3.7.0.bbappend b/meta-arago-distro/recipes-support/libnl/libnl_3.9.0.bbappend
similarity index 22%
rename from meta-arago-distro/recipes-support/libnl/libnl_3.7.0.bbappend
rename to meta-arago-distro/recipes-support/libnl/libnl_3.9.0.bbappend
index 523335c4..26c9b6de 100644
--- a/meta-arago-distro/recipes-support/libnl/libnl_3.7.0.bbappend
+++ b/meta-arago-distro/recipes-support/libnl/libnl_3.9.0.bbappend
@@ -2,7 +2,8 @@  PR:append = ".arago0"
 
 do_install:append() {
 #   Install private files to allow libnl extensions
-    install -d ${D}${includedir}/netlink-private
-    cp -r ${S}/include/netlink-private/cache-api.h ${D}${includedir}/netlink-private/
-    cp -r ${S}/include/netlink-private/object-api.h ${D}${includedir}/netlink-private/
+    install -d ${D}${includedir}/nl-priv-dynamic-core
+    cp -r ${S}/include/nl-priv-dynamic-core/cache-api.h ${D}${includedir}/nl-priv-dynamic-core/
+    cp -r ${S}/include/nl-priv-dynamic-core/object-api.h ${D}${includedir}/nl-priv-dynamic-core/
+    cp -r ${S}/include/nl-priv-dynamic-core/nl-core.h ${D}${includedir}/nl-priv-dynamic-core/
 }