guix-commits
[Top][All Lists]
Advanced

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

branch wip-hurd updated: squash! gnu: openssl: Build fix for the Hurd. -


From: guix-commits
Subject: branch wip-hurd updated: squash! gnu: openssl: Build fix for the Hurd. -- shared libs
Date: Wed, 07 Jun 2023 08:53:25 -0400

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

janneke pushed a commit to branch wip-hurd
in repository guix.

The following commit(s) were added to refs/heads/wip-hurd by this push:
     new 9d27a8664a squash! gnu: openssl: Build fix for the Hurd.  -- shared 
libs
9d27a8664a is described below

commit 9d27a8664a18b62ec9bacff2e30d758c5a0e878d
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed Jun 7 13:20:27 2023 +0200

    squash! gnu: openssl: Build fix for the Hurd.  -- shared libs
    
    * gnu/packages/tls.scm (openssl-3.0)[arguments]: When building on the Hurd,
    add hurd-x86 to #:configure-flags.
---
 gnu/packages/tls.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 7b262adeda..b891329811 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -588,10 +588,10 @@ OpenSSL for TARGET."
                         (search-input-file (or native-inputs inputs)
                                            "/bin/perl"))))))
        ((#:configure-flags flags #~'())
-        (if (target-hurd?)
-            #~(cons
-               #$(string-append "CC=" (cc-for-target))
-               #$flags)
+        (if (target-hurd? (%current-system))
+            #~(append
+               #$flags
+               '("hurd-x86"))
             flags))))
     (license license:asl2.0)))
 



reply via email to

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