guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 16dd4a36ea3b2b6e903e89ae15643deb68cec14d
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Dec 21 19:59:23 2025 +0100
gnu: stddoc: Fix build.
* gnu/packages/documentation.scm (stddoc)[arguments]
<#:phases>: Fix 'build phase with an additional flag.
Change-Id: Icdf1246cc97bf39132b002f02ebd381d375c0ed0
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/documentation.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm
index 06dbd4973c..e32a866068 100644
--- a/gnu/packages/documentation.scm
+++ b/gnu/packages/documentation.scm
@@ -581,7 +581,10 @@ calendars, equations, and other features as extensions of
Markdown syntax.")
(replace 'build
(lambda _
(invoke #$(cc-for-target)
- "-O2" "-g" "-o" "stddoc" "stddoc.c")
+ "-O2" "-g"
+ ;; XXX: Relax gcc 14 strictness.
+ "-Wno-int-conversion"
+ "-o" "stddoc" "stddoc.c")
(with-input-from-file "stddoc.c"
(lambda _
(with-output-to-file "stddoc.c.html"