From 6de53de54a3261e57f288fa7e95c1e343196ef1d Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Mon, 4 Mar 2024 23:25:48 +0100 Subject: gnu: glibc-for-bootstrap: Adapt patch for glibc 2.39. * gnu/packages/patches/glibc-2.39-bootstrap-system.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/make-bootstrap.scm (glibc-for-bootstrap): Use it for glibc 2.39. Change-Id: I96761a0bc011af13d861bfece32d96db160f7686 --- gnu/packages/make-bootstrap.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gnu/packages/make-bootstrap.scm') diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index 7dc1743aea..63c84e93ef 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -74,7 +74,9 @@ for `sh' in $PATH, and without nscd, and with static NSS modules." (inherit base) (source (origin (inherit (package-source base)) (patches (append (search-patches - "glibc-bootstrap-system.patch") + (match (package-version base) + ("2.39" "glibc-2.39-bootstrap-system.patch") + (_ "glibc-bootstrap-system.patch"))) (origin-patches (package-source base)))))) (arguments (substitute-keyword-arguments (package-arguments base) -- cgit v1.2.3