mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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
1 changed files with 9 additions and 1 deletions
|
@ -686,7 +686,15 @@ (define-public gnome-keyring
|
|||
"/manpages/docbook.xsl")))
|
||||
(setenv "XML_CATALOG_FILES"
|
||||
(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
|
||||
`(("libgcrypt" ,libgcrypt)
|
||||
("linux-pam" ,linux-pam)
|
||||
|
|
Loading…
Reference in a new issue