gnu: gnome-keyring: Fix build with Automake 1.15.1.
* gnu/packages/gnome.scm (gnome-keyring)[arguments] <fix-docbook>: Invoke autoconf/aclocal/automake.
This commit is contained in:
parent
d0e9ded713
commit
6915da225f
|
@ -686,7 +686,15 @@ GNOME Desktop.")
|
||||||
"/manpages/docbook.xsl")))
|
"/manpages/docbook.xsl")))
|
||||||
(setenv "XML_CATALOG_FILES"
|
(setenv "XML_CATALOG_FILES"
|
||||||
(string-append (assoc-ref inputs "docbook-xml")
|
(string-append (assoc-ref inputs "docbook-xml")
|
||||||
"/xml/dtd/docbook/catalog.xml")))))))
|
"/xml/dtd/docbook/catalog.xml"))
|
||||||
|
|
||||||
|
;; Rerun the whole thing to avoid version mismatch ("This is
|
||||||
|
;; Automake 1.15.1, but the definition used by this
|
||||||
|
;; AM_INIT_AUTOMAKE comes from Automake 1.15."). Note: we don't
|
||||||
|
;; use 'autoreconf' because it insists on running 'libtoolize'.
|
||||||
|
(invoke "autoconf")
|
||||||
|
(invoke "aclocal")
|
||||||
|
(invoke "automake" "-ac"))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libgcrypt" ,libgcrypt)
|
`(("libgcrypt" ,libgcrypt)
|
||||||
("linux-pam" ,linux-pam)
|
("linux-pam" ,linux-pam)
|
||||||
|
|
Loading…
Reference in New Issue