From 6e3c19f73598f0cff6a160513ba23700cb4b3556 Mon Sep 17 00:00:00 2001 From: Anuj Mittal Date: Tue, 31 Jan 2023 21:49:45 +0800 Subject: 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 --- dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.8.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" inherit pkgconfig -EXTRA_OEMAKE += "PREFIX=${D}${prefix}" +EXTRA_OEMAKE += "PREFIX=${D}${prefix} LIBDIR=${D}${libdir}" export STAGING_INCDIR -- cgit v1.2.3-54-g00ecf