diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2014-03-07 00:45:51 +0100 |
---|---|---|
committer | Cyril Roelandt <tipecaml@gmail.com> | 2014-03-07 00:45:51 +0100 |
commit | ff3c0c1b805453990a42f690f148b41b9dff382a (patch) | |
tree | 6b0b55a826831b5c6e027fb6d4d5bb0c11d83dcc /gnu/packages/base.scm | |
parent | 1faca892a35941b6eed2d6c04478f9f77ab81e15 (diff) | |
download | guix-ff3c0c1b805453990a42f690f148b41b9dff382a.tar guix-ff3c0c1b805453990a42f690f148b41b9dff382a.tar.gz |
coreutils: fix test suite
* gnu/packages/patches/coreutils-skip-nohup.patch: patch taken from the git
repository of coreutils, that makes sure tests/misc/nohup.sh does not fail
when /dev/tty does not exist.
* gnu/packages/base.scm (coreutils): use it.
* 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 f828f3531c..89d90c989b 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -240,7 +240,9 @@ used to apply commands with arbitrarily long arguments.") (sha256 (base32 "04hjzzv434fb8ak3hh3dyhdvg3hqjjwvjmjxqzk1gh2jh6cr8gjv")) - (patches (list (search-patch "coreutils-dummy-man.patch"))))) + (patches (list (search-patch "coreutils-dummy-man.patch") + ;; TODO: remove this patch for >= 8.23 + (search-patch "coreutils-skip-nohup.patch"))))) (build-system gnu-build-system) (inputs `(("acl" ,acl) ; TODO: add SELinux ("gmp" ,gmp))) |