summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2026-07-23 12:21:44 -0700
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2026-07-23 19:33:29 +0000
commit9d623dfc3685d6f493e7ca6f19c8062e6685722c (patch)
treecfb8fce432e525baae14ddb5e47e1b3feb95b139
parentd190fbd7b2eb410f5962f07e215ab46d24216513 (diff)
downloadmeta-freescale-9d623dfc3685d6f493e7ca6f19c8062e6685722c.tar.gz
fixup! iproute2: Fix hardcoded include path and do_install copies per oelint
The recent commit accidentally moved header files from /usr/include to /usr/include/include. Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> (cherry picked from commit d92fd4600bcefa517d28d96132c75f378ac9d29f)
-rw-r--r--recipes-connectivity/iproute2/iproute2_%.bbappend4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-connectivity/iproute2/iproute2_%.bbappend b/recipes-connectivity/iproute2/iproute2_%.bbappend
index b65640a81..8e0f8972a 100644
--- a/recipes-connectivity/iproute2/iproute2_%.bbappend
+++ b/recipes-connectivity/iproute2/iproute2_%.bbappend
@@ -1,11 +1,11 @@
1do_install:append:imx-generic-bsp () { 1do_install:append:imx-generic-bsp () {
2 install -d ${D}${includedir}/tc 2 install -d ${D}${includedir}/tc
3 cp -R ${B}/include ${D}${includedir} 3 cp -R ${B}/include/* ${D}${includedir}
4 install -m 0644 ${B}/tc/*.h ${D}${includedir}/tc 4 install -m 0644 ${B}/tc/*.h ${D}${includedir}/tc
5} 5}
6 6
7do_install:append:qoriq-generic-bsp () { 7do_install:append:qoriq-generic-bsp () {
8 install -d ${D}${includedir}/tc 8 install -d ${D}${includedir}/tc
9 cp -R ${B}/include ${D}${includedir} 9 cp -R ${B}/include/* ${D}${includedir}
10 install -m 0644 ${B}/tc/*.h ${D}${includedir}/tc 10 install -m 0644 ${B}/tc/*.h ${D}${includedir}/tc
11} 11}