guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: gnutls: Leave #:disallowed-references empty for GNU/Hurd.


From: guix-commits
Subject: 02/03: gnu: gnutls: Leave #:disallowed-references empty for GNU/Hurd.
Date: Sat, 20 Jun 2020 17:36:49 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 9ee8b41f2b9cf9e9f1db4be96bb57d2dc4ec3628
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat Jun 20 23:09:31 2020 +0200

    gnu: gnutls: Leave #:disallowed-references empty for GNU/Hurd.
    
    Partly fixes <https://bugs.gnu.org/41775>.
    
    This is a followup to a9bcc6474667d6699500f03d69f9c8212a50d711.
    
    * gnu/packages/tls.scm (gnutls)[arguments]: Let #:disallowed-references
    empty when 'hurd-target?' returns true.
---
 gnu/packages/tls.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index ec40141..d9c8e7a 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -184,7 +184,7 @@ living in the same process.")
     (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



reply via email to

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