me
/
guix
Archived
1
0
Fork 0

gnu: freedink-engine: Call autoreconf.

* gnu/packages/games.scm: freedink-engine (phases): add 'autoreconf

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Jesse Gibbons 2020-07-03 16:54:21 -06:00 committed by Nicolas Goaziou
parent e77989bdcb
commit e7e69e56f5
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 8 additions and 0 deletions

View File

@ -2745,6 +2745,14 @@ interface or via an external visual interface such as GNU XBoard.")
;; These tests require a graphical interface.
(substitute* "src/Makefile.am"
(("test_gfx_fonts TestIOGfxDisplay") ""))
#t))
(add-before 'bootstrap 'autoreconf
(lambda _
;; automake is out of date in the source
;; autoreconf updates the automake scripts
(invoke "autoreconf")
;; Build fails when autom4te.cache exists.
(delete-file-recursively "autom4te.cache")
#t)))))
(native-inputs `(("autoconf" ,autoconf)
("automake" ,automake)