gnu: at-spi2-core: Find docbook when cross-compiling.
* gnu/packages/gtk.scm (at-spi2-core)[arguments]<#:phases>{patch-docbook-sgml}: Look up "docbook-sxml" in 'native-inputs' instead of 'inputs' when cross-compiling.master
parent
b79bf535e4
commit
b9ae6181df
|
@ -744,10 +744,17 @@ scaled, composited, modified, saved, or rendered.")
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(mkdir-p (string-append (assoc-ref outputs "doc") "/share"))
|
||||
#t))
|
||||
;; TODO(core-updates): Unconditionally use (or native-inputs inputs)
|
||||
(add-after 'unpack 'patch-docbook-sgml
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let* ((xmldoc (string-append (assoc-ref inputs "docbook-xml")
|
||||
"/xml/dtd/docbook")))
|
||||
(lambda* (#:key ,@(if (%current-target-system)
|
||||
'(native-inputs)
|
||||
'()) inputs #:allow-other-keys)
|
||||
(let* ((xmldoc
|
||||
(string-append (assoc-ref ,(if (%current-target-system)
|
||||
'(or native-inputs inputs)
|
||||
'inputs)
|
||||
"docbook-xml")
|
||||
"/xml/dtd/docbook")))
|
||||
(substitute* "doc/libatspi/libatspi-docs.sgml"
|
||||
(("http://.*/docbookx\\.dtd")
|
||||
(string-append xmldoc "/docbookx.dtd")))
|
||||
|
|
Reference in New Issue