guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu; sudo: Remove 'groff' input when building for


From: guix-commits
Subject: branch master updated: gnu; sudo: Remove 'groff' input when building for the Hurd.
Date: Sat, 10 Oct 2020 12:25:55 -0400

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

janneke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e42765b  gnu; sudo: Remove 'groff' input when building for the Hurd.
e42765b is described below

commit e42765b675d5f3fced0720c1a66350c635fd8643
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sat Oct 10 18:22:22 2020 +0200

    gnu; sudo: Remove 'groff' input when building for the Hurd.
    
    * gnu/packages/admin.scm (sudo)[native-inputs]: Remove 'groff' when building
    for the Hurd.
---
 gnu/packages/admin.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index ce505f0..f0ae120 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -1472,7 +1472,10 @@ system administrator.")
        ;; the chroot's /etc/passwd doesn't have it.  Turn off the tests.
        #:tests? #f))
     (native-inputs
-     `(("groff" ,groff)))
+     ;; XXX TODO: Remove on next rebuild cycle.
+     (if (hurd-target?)
+         '()
+         `(("groff" ,groff))))
     (inputs
      `(("coreutils" ,coreutils)
        ("linux-pam" ,linux-pam)



reply via email to

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