From: Khem Raj Date: Fri, 3 Jan 2020 07:21:22 +0000 (-0800) Subject: musl: Build outside of source tree X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~12321 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=025a7a4007d4f6f64c861dc498dab68eaa650c2d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 9aea2c39c8e..e5cc869cb9d 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"