guix_mirror_bot pushed a commit to branch misc-world-rebuild in repository guix.
commit 6e74c6dd66a43a0f7ed07e3a6c4b00e583f29c79 Author: Nguyễn Gia Phong <[email protected]> AuthorDate: Sun Jul 5 22:34:53 2026 +0900 gnu: docbook2x: Fix build. GNU roff 1.24 issues a warning on the VCR test, which is interpreted as a failure. * gnu/packages/docbook.scm (docbook2x)[arguments]<#:phases>: Add phase skip-test after unpack. --- gnu/packages/docbook.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm index 870ac6318f..5bdc6cd319 100644 --- a/gnu/packages/docbook.scm +++ b/gnu/packages/docbook.scm @@ -1128,6 +1128,10 @@ Detect the differences in markup between two SGML files. (srfi srfi-26)) #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'skip-test + (lambda _ + (substitute* "test/refentry/Makefile.am" + (("VCR.\\w+") "")))) (add-before 'build 'clean (lambda _ (invoke "make" "clean")))
