diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-07-09 11:49:29 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-10 01:31:42 +0200 |
commit | c823b958256ba1db6cf896400fae218e4261266e (patch) | |
tree | eb394cec290465d5dc6771989b00869afbeccc72 /gnu/packages/base.scm | |
parent | df49fe2a13d933c640e3189413c5adfced1103c5 (diff) | |
download | guix-c823b958256ba1db6cf896400fae218e4261266e.tar.gz |
gnu: coreutils: Patch broken Gnulib tests.
Fixes <https://bugs.gnu.org/49459>. * gnu/packages/patches/coreutils-gnulib-tests.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/base.scm (coreutils)[source]: Use it.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 565d2ccab8..93e83979f7 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -328,7 +328,8 @@ used to apply commands with arbitrarily long arguments.") (sha256 (base32 "1yjcrh5hw70c0yn8zw55pd6j51dj90anpq8mmg649ps9g3gdhn24")) - (patches (search-patches "coreutils-ls.patch")))) + (patches (search-patches "coreutils-ls.patch" + "coreutils-gnulib-tests.patch")))) (build-system gnu-build-system) (inputs `(("acl" ,acl) ; TODO: add SELinux ("attr" ,attr) ;for xattrs in ls, mv, etc |