guix-commits
[Top][All Lists]
Advanced

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

branch core-updates updated: gnu: coreutils: Typo: Use libcap only when


From: guix-commits
Subject: branch core-updates updated: gnu: coreutils: Typo: Use libcap only when supported.
Date: Mon, 30 Mar 2020 07:23:20 -0400

This is an automated email from the git hooks/post-receive script.

janneke pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 1808e64  gnu: coreutils: Typo: Use libcap only when supported.
1808e64 is described below

commit 1808e64de095c8b0960bc8ac8df0ef48a5f95109
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 43dc8c4..80a158a 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]