diff options
author | Josselin Poiret <dev@jpoiret.xyz> | 2024-05-08 23:41:33 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:03 +0200 |
commit | b6ea2c48f69ffd1b79f25580ce45c815c12de57a (patch) | |
tree | 15e2831e4e2bb8b750f22b613a4e01ec597ecbeb /gnu/packages/base.scm | |
parent | 1b4733b77e71142695c36ca59eca632db1fd31b0 (diff) | |
download | guix-b6ea2c48f69ffd1b79f25580ce45c815c12de57a.tar.gz guix-b6ea2c48f69ffd1b79f25580ce45c815c12de57a.zip |
gnu: glibc: Update patches following upstream's master branch.
* gnu/packages/patches/glibc-2.39-git-updates.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/base.scm (glibc): Use it.
Change-Id: I13ff3fa2eddd8296d138f87c9069487e9543b3bd
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 1a18be4416..b1599817a6 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -830,7 +830,8 @@ the store.") (sha256 (base32 "09nrwb0ksbah9k35jchd28xxp2hidilqdgz7b8v5f30pz1yd8yzp")) - (patches (search-patches "glibc-ldd-powerpc.patch" + (patches (search-patches "glibc-2.39-git-updates.patch" + "glibc-ldd-powerpc.patch" "glibc-2.38-ldd-x86_64.patch" "glibc-dl-cache.patch" "glibc-2.37-versioned-locpath.patch" @@ -842,6 +843,8 @@ the store.") "glibc-hurd-mach-print.patch" "glibc-hurd-gettyent.patch" "glibc-hurd-getauxval.patch")))) + (properties `((lint-hidden-cve . ("CVE-2024-33601" "CVE-2024-33602" + "CVE-2024-33600" "CVE-2024-33599")))) (build-system gnu-build-system) ;; Glibc's <limits.h> refers to <linux/limit.h>, for instance, so glibc |