Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions classes/compat/make-4.3.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
jobServer: "pipe"

depends:
- name: devel::make
environment:
DEVEL__MAKE_VERSION: "4.3"
DEVEL__MAKE_DIGEST: "e05fdde47c5f7ca45cb697e973894ff4f5d79e13b750ed57d7b66d8defc78e19"
use: [tools]
tools:
target-toolchain: host-compat-toolchain
4 changes: 2 additions & 2 deletions recipes/devel/make.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
inherit: [cpackage, libtool, install, "basement::update-config"]

metaEnvironment:
PKG_VERSION: "4.4.1"
PKG_VERSION: "${DEVEL__MAKE_VERSION:-4.4.1}"
PKG_LICENSE: "GPL-3.0-only"

checkoutSCM:
scm: url
url: ${GNU_MIRROR}/make/make-${PKG_VERSION}.tar.gz
digestSHA256: "dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3"
digestSHA256: "${DEVEL__MAKE_DIGEST:-dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3}"
stripComponents: 1

# We do not build make with make. Instead call the manual build script that is
Expand Down
5 changes: 4 additions & 1 deletion recipes/libs/compat/glibc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
inherit: [make, patch, strip]
# glibc <= 2.31 fails to build with make 4.4
# see: https://github.com/crosstool-ng/crosstool-ng/issues/1946

inherit: [make, patch, strip, 'compat::make-4.3']

depends:
- kernel::linux-libc-headers
Expand Down