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:
Ludovic Courtès 2018-01-21 01:14:22 +01:00
parent d0e9ded713
commit 6915da225f
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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)