gnu; sudo: Remove 'groff' input when building for the Hurd.

* gnu/packages/admin.scm (sudo)[native-inputs]: Remove 'groff' when building
for the Hurd.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-10-10 18:22:22 +02:00
parent 6693eac6eb
commit e42765b675
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273

View File

@ -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)