From 025a7a4007d4f6f64c861dc498dab68eaa650c2d Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 2 Jan 2020 23:21:22 -0800 Subject: [PATCH] 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 --- meta/recipes-core/musl/musl.inc | 2 ++ 1 file changed, 2 insertions(+) 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" -- 2.40.1