diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2020-03-30 13:03:11 +0200 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2020-03-30 13:05:21 +0200 |
commit | 1808e64de095c8b0960bc8ac8df0ef48a5f95109 (patch) | |
tree | f893bbc425643e54ab371f1186e1cb894a955366 /gnu/packages/base.scm | |
parent | ae0badf5bb791428423a98d4e4e2b8d297a5d4be (diff) | |
download | guix-1808e64de095c8b0960bc8ac8df0ef48a5f95109.tar.gz |
gnu: coreutils: Typo: Use libcap only when supported.
* gnu/packages/base.scm (coreutils)[inputs]: Typo: Use libcap only when supported.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 43dc8c492e..80a158a685 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -307,8 +307,8 @@ used to apply commands with arbitrarily long arguments.") ;; Do not use libcap when cross-compiling since it's not quite ;; cross-compilable; and use it only for supported systems. ,@(if (and (not (%current-target-system)) - (not (member (%current-system) - (package-supported-systems libcap)))) + (member (%current-system) + (package-supported-systems libcap))) `(("libcap" ,libcap)) ;capability support in 'ls', etc. '()))) (native-inputs |