From: Khem Raj Date: Fri, 3 Jan 2020 07:21:22 +0000 (-0800) Subject: musl: Build outside of source tree X-Git-Tag: uninative-2.8~651 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=025a7a4007d4f6f64c861dc498dab68eaa650c2d;p=openembedded-core.git musl: Build outside of source tree musl does not use cmake/autotools etc. but plane old makefile basded build system, which means it does not get B defined to be outside S therefore define B explicitly to be outside S Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/musl/musl.inc b/meta/recipes-core/musl/musl.inc index 9aea2c39c8..e5cc869cb9 100644 --- a/meta/recipes-core/musl/musl.inc +++ b/meta/recipes-core/musl/musl.inc @@ -25,3 +25,5 @@ MIPS_INSTRUCTION_SET = "mips" ARM_INSTRUCTION_SET_armv5 = "arm" ARM_INSTRUCTION_SET_armv4 = "arm" +# Enable out of tree build +B = "${WORKDIR}/build"