emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#68188: closed ([PATCH] gnu: libassuan: Fix cross-compiling.)


From: GNU bug Tracking System
Subject: bug#68188: closed ([PATCH] gnu: libassuan: Fix cross-compiling.)
Date: Wed, 03 Jan 2024 14:32:02 +0000

Your message dated Wed, 03 Jan 2024 15:30:53 +0100
with message-id <878r56zdya.fsf@gnu.org>
and subject line Re: [bug#68188] [PATCH] gnu: libassuan: Fix cross-compiling.
has caused the debbugs.gnu.org bug report #68188,
regarding [PATCH] gnu: libassuan: Fix cross-compiling.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
68188: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=68188
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: libassuan: Fix cross-compiling. Date: Mon, 1 Jan 2024 13:59:09 +0800
gnu/packages/gnupg.scm(libassuan):
[arguments]: When cross-compiling, set the --with-libgpg-error-prefix configure 
option.

Change-Id: I320c48f320c34939a8e94589610beb5c40fdf53a
---
 gnu/packages/gnupg.scm | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 73e9c3a78a..a6ba57d7f3 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -23,6 +23,7 @@
 ;;; Copyright ?? 2021 Aleksandr Vityazev <avityazev@posteo.org>
 ;;; Copyright ?? 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright ?? 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright ?? 2024 Zheng Junjie <873216071@qq.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -236,6 +237,12 @@ (define-public libassuan
        (base32
         "1r1lvcp67gn5lfrj1g388sd77ca6qwnmxndirdysd71gk362z34f"))))
     (build-system gnu-build-system)
+    (arguments (if (%current-target-system)
+                   (list #:configure-flags
+                         #~(list (string-append
+                                  "--with-libgpg-error-prefix="
+                                  #$(this-package-input "libgpg-error"))))
+                   '()))
     (propagated-inputs
      (list libgpg-error pth))
     (home-page "https://gnupg.org";)

base-commit: 86b5fa100992527c434616482ba9cfd92b636d12
-- 
2.41.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#68188] [PATCH] gnu: libassuan: Fix cross-compiling. Date: Wed, 03 Jan 2024 15:30:53 +0100 User-agent: Gnus/5.13 (Gnus v5.13)
> gnu/packages/gnupg.scm(libassuan):
> [arguments]: When cross-compiling, set the --with-libgpg-error-prefix 
> configure option.

Applied, thanks,

Mathieu


--- End Message ---

reply via email to

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