diff options
author | Khem Raj <raj.khem@gmail.com> | 2020-01-02 23:21:22 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-03 22:35:48 +0000 |
commit | dd68e76a70bda284fba7d5763334121af68aa60a (patch) | |
tree | 92bd3faf45b3bad00467cc173041777f8ddd0725 /meta/recipes-core | |
parent | 17f102e36e6e909486296bed3024b820bce97d3d (diff) | |
download | poky-dd68e76a70bda284fba7d5763334121af68aa60a.tar.gz |
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
(From OE-Core rev: 025a7a4007d4f6f64c861dc498dab68eaa650c2d)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/musl/musl.inc | 2 |
1 files changed, 2 insertions, 0 deletions
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" | |||
25 | ARM_INSTRUCTION_SET_armv5 = "arm" | 25 | ARM_INSTRUCTION_SET_armv5 = "arm" |
26 | ARM_INSTRUCTION_SET_armv4 = "arm" | 26 | ARM_INSTRUCTION_SET_armv4 = "arm" |
27 | 27 | ||
28 | # Enable out of tree build | ||
29 | B = "${WORKDIR}/build" | ||