me
/
guix
Archived
1
0
Fork 0

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.
master
Ludovic Courtès 2020-06-20 23:09:31 +02:00
parent 50e7e6a065
commit 9ee8b41f2b
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ living in the same process.")
(arguments (arguments
`(,@(if (hurd-target?) '(#:tests? #f) '()) `(,@(if (hurd-target?) '(#:tests? #f) '())
; Ensure we don't keep a reference to this buggy software. ; 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 #:configure-flags
(list (list
;; GnuTLS doesn't consult any environment variables to specify ;; GnuTLS doesn't consult any environment variables to specify