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 23:30:07 +0800
commitc995bda6b6c41953173528e532029ea5ab356e5f (patch)
tree27aedc0d0d4eea5430ffe7b8564f8945e6316d28
parentd8df341951511878756aa11cb77939866fd83251 (diff)
downloadmeta-dpdk-c995bda6b6c41953173528e532029ea5ab356e5f.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