diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2023-01-31 21:49:45 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2023-01-31 23:30:07 +0800 |
commit | c995bda6b6c41953173528e532029ea5ab356e5f (patch) | |
tree | 27aedc0d0d4eea5430ffe7b8564f8945e6316d28 | |
parent | d8df341951511878756aa11cb77939866fd83251 (diff) | |
download | meta-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.bb | 2 |
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 | ||
22 | inherit pkgconfig | 22 | inherit pkgconfig |
23 | 23 | ||
24 | EXTRA_OEMAKE += "PREFIX=${D}${prefix}" | 24 | EXTRA_OEMAKE += "PREFIX=${D}${prefix} LIBDIR=${D}${libdir}" |
25 | 25 | ||
26 | export STAGING_INCDIR | 26 | export STAGING_INCDIR |
27 | 27 | ||