diff mbox series

[bug#65479,core-updates,v2,22/62] gnu: xmlto: Add libxslt native-search-paths to its own.

Message ID 9e1983c326c156bc033d498aac96096565053bfe.1695478390.git.mirai@makinata.eu
State New
Headers show
Series Docbook & XML/SGML improvements. | expand

Commit Message

Bruno Victal Sept. 23, 2023, 2:19 p.m. UTC
Otherwise when xmlto invokes xsltproc it will fail to find the XML catalog
files.

* gnu/packages/xml.scm (xmlto)[native-search-paths]: Add libxslt
native-search-paths to its own.
---
 gnu/packages/xml.scm | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 447bdcf117..6913b016df 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1136,6 +1136,9 @@  (define-public xmlto
      (list util-linux ; for 'getopt'
            libxml2 ; for 'xmllint'
            libxslt))                     ; for 'xsltproc'
+    (native-search-paths
+     ;; For finding XML/SGML catalogs used by 'xsltproc' and 'xmllint'.
+     (package-native-search-paths libxslt))
     (home-page "http://cyberelk.net/tim/software/xmlto/")
     (synopsis "Front-end to an XSL toolchain")
     (description