summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-21 19:59:23 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-27 20:13:58 +0000
commit16dd4a36ea3b2b6e903e89ae15643deb68cec14d (patch)
tree2a262bcc066b7fd6f438d34e4a56340136030bcf /gnu
parent40a038a465b47de6e01d8a6c334231cbd1bd9c8f (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/documentation.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm
index 06dbd4973c9..e32a8660680 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.")
581 (replace 'build 581 (replace 'build
582 (lambda _ 582 (lambda _
583 (invoke #$(cc-for-target) 583 (invoke #$(cc-for-target)
584 "-O2" "-g" "-o" "stddoc" "stddoc.c") 584 "-O2" "-g"
585 ;; XXX: Relax gcc 14 strictness.
586 "-Wno-int-conversion"
587 "-o" "stddoc" "stddoc.c")
585 (with-input-from-file "stddoc.c" 588 (with-input-from-file "stddoc.c"
586 (lambda _ 589 (lambda _
587 (with-output-to-file "stddoc.c.html" 590 (with-output-to-file "stddoc.c.html"