diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-09-11 23:15:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-09-11 23:16:37 +0200 |
commit | 895067ff495a35768e1ba39e969eff3495b8cbc4 (patch) | |
tree | d823a0b7c599dd8b62c05786724fdfbbb17254b5 /gnu/packages/base.scm | |
parent | b86c013c68be640521b533e1dd40115e2cb72b40 (diff) | |
download | gnu-guix-895067ff495a35768e1ba39e969eff3495b8cbc4.tar gnu-guix-895067ff495a35768e1ba39e969eff3495b8cbc4.tar.gz |
gnu: coreutils: Skip racy 'tail' tests.
This works around <http://bugs.gnu.org/21460>.
* gnu/packages/patches/coreutils-racy-tail-test.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
* gnu/packages/base.scm (coreutils): Use 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 e2d4727c9c..f60a6cfeef 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -248,7 +248,9 @@ used to apply commands with arbitrarily long arguments.") version ".tar.xz")) (sha256 (base32 - "0w11jw3fb5sslf0f72kxy7llxgk1ia3a6bcw0c9kmvxrlj355mx2")))) + "0w11jw3fb5sslf0f72kxy7llxgk1ia3a6bcw0c9kmvxrlj355mx2")) + (patches + (list (search-patch "coreutils-racy-tail-test.patch"))))) (build-system gnu-build-system) (inputs `(("acl" ,acl) ; TODO: add SELinux ("gmp" ,gmp) ;bignums in 'expr', yay! |