diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-09-08 15:53:05 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-09-08 15:53:05 +0200 |
commit | c5d8e688dc79f8ea2094adf04d2274332cf5cb6c (patch) | |
tree | bd9164e5344c32a5e80324942c05b995d2c20034 /gnu/packages/base.scm | |
parent | 140b4bc6cd4cda79ab48c3fecc8c98afeb02cdf6 (diff) | |
download | guix-c5d8e688dc79f8ea2094adf04d2274332cf5cb6c.tar guix-c5d8e688dc79f8ea2094adf04d2274332cf5cb6c.tar.gz |
gnu: glibc: Patch 'openat64', which was buggy on 32-bit platforms.
* gnu/packages/patches/glibc-o-largefile.patch: New file.
* gnu/packages/base.scm (glibc)[source]: Add it to 'patches'.
* gnu-system.am (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 76fd1115eb..e2d4727c9c 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -471,7 +471,9 @@ store.") (("use_ldconfig=yes") "use_ldconfig=no"))) (modules '((guix build utils))) - (patches (list (search-patch "glibc-ldd-x86_64.patch"))))) + (patches (map search-patch + '("glibc-ldd-x86_64.patch" + "glibc-o-largefile.patch"))))) (build-system gnu-build-system) ;; Glibc's <limits.h> refers to <linux/limit.h>, for instance, so glibc |