summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnuj Mittal <anuj.mittal@intel.com>2023-01-31 21:49:45 +0800
committerAnuj Mittal <anuj.mittal@intel.com>2023-01-31 21:57:52 +0800
commit5471129ec376d8ff3b002541024c6b819ccd465c (patch)
tree05ef0bab4c62048745038057da1d81fcb35a1734
parentd9e2b9eefb0f20ec205846e6506db8df806d13d1 (diff)
downloadmeta-dpdk-5471129ec376d8ff3b002541024c6b819ccd465c.tar.gz
xdp-tools: fix multilib build
The project sets libdir path to /usr/lib [1] which is not always correct and results in failures when $libdir, as an example, is /usr/lib64. Set the correct value of LIBDIR. [1] https://github.com/xdp-project/xdp-tools/blob/v1.2/lib/defines.mk#L11 Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r--dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.8.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.8.bb b/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.8.bb
index 6744554..99c435d 100644
--- a/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.8.bb
+++ b/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.8.bb
@@ -21,7 +21,7 @@ S = "${WORKDIR}/git"
21 21
22inherit pkgconfig 22inherit pkgconfig
23 23
24EXTRA_OEMAKE += "PREFIX=${D}${prefix}" 24EXTRA_OEMAKE += "PREFIX=${D}${prefix} LIBDIR=${D}${libdir}"
25 25
26export STAGING_INCDIR 26export STAGING_INCDIR
27 27