diff options
author | Rutger Helling <rhelling@mykolab.com> | 2018-05-02 10:07:23 +0200 |
---|---|---|
committer | Rutger Helling <rhelling@mykolab.com> | 2018-05-02 10:11:43 +0200 |
commit | 7d5adf013127c89826e9fbe9f1a67265b3538609 (patch) | |
tree | 7c967f2b5fb4a4986c08b16166f6fe838b925537 /gnu/packages/linux.scm | |
parent | f0ae90cbbb275cb5585bee2374df24dc2d499151 (diff) | |
download | gnu-guix-7d5adf013127c89826e9fbe9f1a67265b3538609.tar gnu-guix-7d5adf013127c89826e9fbe9f1a67265b3538609.tar.gz |
gnu: e2fsprogs: Fix build with glibc-2.27.
* gnu/packages/patches/e2fsprogs-glibc-2.27.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/linux.scm (e2fsprogs)[source]: Add patch.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index be0c1f86dd..35dc6eee7c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -750,7 +750,8 @@ slabtop, and skill.") name "-" version ".tar.xz")) (sha256 (base32 - "00ilv65dzcgiap435j89xk86shf7rrav3wsik7cahy789qijdcn9")))) + "00ilv65dzcgiap435j89xk86shf7rrav3wsik7cahy789qijdcn9")) + (patches (search-patches "e2fsprogs-glibc-2.27.patch")))) (build-system gnu-build-system) (inputs `(("util-linux" ,util-linux))) (native-inputs `(("pkg-config" ,pkg-config) |