mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: gnutls: Leave #:disallowed-references empty for GNU/Hurd.
Partly fixes <https://bugs.gnu.org/41775>.
This is a followup to a9bcc64746
.
* gnu/packages/tls.scm (gnutls)[arguments]: Let #:disallowed-references
empty when 'hurd-target?' returns true.
This commit is contained in:
parent
50e7e6a065
commit
9ee8b41f2b
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ (define-public gnutls
|
|||
(arguments
|
||||
`(,@(if (hurd-target?) '(#:tests? #f) '())
|
||||
; Ensure we don't keep a reference to this buggy software.
|
||||
#:disallowed-references (,net-tools)
|
||||
#:disallowed-references ,(if (hurd-target?) '() (list net-tools))
|
||||
#:configure-flags
|
||||
(list
|
||||
;; GnuTLS doesn't consult any environment variables to specify
|
||||
|
|
Loading…
Reference in a new issue