[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/05: gnu: openssl: Fix building on x86_64-linux-gnux32.
From: |
guix-commits |
Subject: |
03/05: gnu: openssl: Fix building on x86_64-linux-gnux32. |
Date: |
Thu, 4 Jan 2024 14:50:27 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit 568c12d7266c7372f04f16bcb91cbe0f88d9e70b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jan 2 09:27:34 2024 +0200
gnu: openssl: Fix building on x86_64-linux-gnux32.
* gnu/packages/tls.scm (target->openssl-target): Add entry for
x86_64-linux-gnux32.
Change-Id: Icbbdb76134da0811b8493c55ca2d3acdb77c5883
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/tls.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 75e6370c72..208a7ff640 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015 David Thompson <davet@gnu.org>
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Leo Famulari
<leo@famulari.name>
-;;; Copyright © 2016, 2017, 2019, 2021-2023 Efraim Flashner
<efraim@flashner.co.il>
+;;; Copyright © 2016, 2017, 2019, 2021-2024 Efraim Flashner
<efraim@flashner.co.il>
;;; Copyright © 2016, 2017, 2018 Nikita <nikita@n0.is>
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
@@ -429,6 +429,8 @@ OpenSSL for TARGET."
(cond
((target-x86-32? target)
"x86")
+ ((target-x32? target)
+ "x32")
((target-x86-64? target)
"x86_64")
((target-mips64el? target)