diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-04-23 01:24:57 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-04-23 01:24:57 +0200 |
commit | fd6ec6bd99f64ca7792909f29f990d40e6e2e0d2 (patch) | |
tree | 678d7f20e6e2e75732fcb42c05ecad2bcefe3900 /gnu/packages/base.scm | |
parent | b59af0c0ceff9234ef6416fb88d7f645b8b4f922 (diff) | |
download | guix-fd6ec6bd99f64ca7792909f29f990d40e6e2e0d2.tar guix-fd6ec6bd99f64ca7792909f29f990d40e6e2e0d2.tar.gz |
gnu: coreutils@8.27: Do not apply 'coreutils-cut-huge-range-test.patch'.
This patch is not needed in 8.27.
Reported by Mark H Weaver <mhw@netris.org>.
* gnu/packages/base.scm (coreutils-8.27)[arguments]: New field.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 7af166d6e5..387ae123ab 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -376,7 +376,14 @@ functionality beyond that which is outlined in the POSIX standard.") version ".tar.xz")) (sha256 (base32 - "0sv547572iq8ayy8klir4hnngnx92a9nsazmf1wgzfc7xr4x74c8")))))) + "0sv547572iq8ayy8klir4hnngnx92a9nsazmf1wgzfc7xr4x74c8")))) + (arguments + (if (string-prefix? "arm" (or (%current-target-system) + (%current-system))) + (substitute-keyword-arguments (package-arguments coreutils) + ((#:phases phases) + `(alist-delete 'patch-cut-test ,phases))) + (package-arguments coreutils))))) (define-public coreutils-minimal ;; Coreutils without its optional dependencies. |