guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: coreutils: Typo: Use libcap only when supported.


From: guix-commits
Subject: 02/02: gnu: coreutils: Typo: Use libcap only when supported.
Date: Mon, 30 Mar 2020 07:16:06 -0400 (EDT)

janneke pushed a commit to branch wip-hurd
in repository guix.

commit f9a65764646ec5740deeb657e41e138d6b2c663d
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Mon Mar 30 13:03:11 2020 +0200

    gnu: coreutils: Typo: Use libcap only when supported.
    
    * gnu/packages/base.scm (coreutils)[inputs]: Typo: Use libcap only when
    supported.
---
 gnu/packages/base.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 2292176..e85b4fd 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]