This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6f93f5ac58 gnu: gpa: Fix build with gcc-14.
6f93f5ac58 is described below
commit 6f93f5ac58aac0ec3780e4b03315fa2f88dbde12
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Sep 11 09:33:57 2025 +0300
gnu: gpa: Fix build with gcc-14.
Fixes guix/guix#2609.
* gnu/packages/gnupg.scm (gpa)[arguments]: Add CFLAGS with
'-Wno-error=implicit-function-declaration'
Change-Id: I4d8e003947305ed4f7e11e468b2c6f3aa1a871c9
---
gnu/packages/gnupg.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index f84cd560a8..9f87dcb446 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -1102,7 +1102,8 @@ however, pgpdump produces more detailed and easier to
understand output.")
"1k1kvxffyb4nm83yp3mnx9bfmcciwb7vfw8c3xscnh85yxdzma16"))))
(build-system gnu-build-system)
(arguments
- `(#:phases
+ `(#:make-flags '("CFLAGS=-Wno-implicit-function-declaration")
+ #:phases
(modify-phases %standard-phases
(add-after 'install 'wrap-program
(lambda* (#:key inputs outputs #:allow-other-keys)