summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-12 14:45:51 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-19 14:14:11 +0100
commite89cdd353a86ac17f48b016185def221b3b04342 (patch)
treec153f3cfcf4bdaf34f5f40599b585e2fb808a71c /meta/recipes-core
parent6e4dec99104e809b61c2062e7c6b1efe8eea1474 (diff)
downloadpoky-e89cdd353a86ac17f48b016185def221b3b04342.tar.gz
buildtools: Add standalone make tarball
Some versions of make have bugs. Add a way to provide a make tarball that can be used on it's own in these cases. (From OE-Core rev: 4f1f6743fa252405075192633e19b9d2b03b7303) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/meta/buildtools-make-tarball.bb15
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/buildtools-make-tarball.bb b/meta/recipes-core/meta/buildtools-make-tarball.bb
new file mode 100644
index 0000000000..3a9659076f
--- /dev/null
+++ b/meta/recipes-core/meta/buildtools-make-tarball.bb
@@ -0,0 +1,15 @@
1require recipes-core/meta/buildtools-tarball.bb
2
3DESCRIPTION = "SDK type target for building a standalone make binary. The tarball can be used to run bitbake builds \
4 on systems where make is broken (e.g. the 4.2.1 version on CentOS 8 based distros)."
5SUMMARY = "Standalone tarball for running builds on systems with inadequate make"
6LICENSE = "MIT"
7
8# Add nativesdk equivalent of build-essentials
9TOOLCHAIN_HOST_TASK = "\
10 nativesdk-sdk-provides-dummy \
11 nativesdk-make \
12 "
13TOOLCHAIN_OUTPUTNAME = "${SDK_ARCH}-buildtools-make-nativesdk-standalone-${DISTRO_VERSION}"
14
15SDK_TITLE = "Make build tool"