diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-25 00:23:44 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-25 05:01:55 -0400 |
commit | 8a442e5db2989df6283b323fc8176df75972bab2 (patch) | |
tree | 395e2ba3b492c4c5166703e0bc768370cc54c51e /gnu | |
parent | 5e6c882e2d2e050166ba1d4d38f45e28660b7644 (diff) | |
download | guix-8a442e5db2989df6283b323fc8176df75972bab2.tar.gz guix-8a442e5db2989df6283b323fc8176df75972bab2.zip |
gnu: asciidoc: Restore custom 'bootstrap' phase.
Fix a regression introduced by commit
189be331acfda1c242a9c85fca8d2a0356742f48.
* gnu/packages/documentation.scm (asciidoc)[arguments]: Restore the custom
'bootstrap' phase that present prior to commit 189be33.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/documentation.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm index cde689c63d..e36200bbab 100644 --- a/gnu/packages/documentation.scm +++ b/gnu/packages/documentation.scm @@ -59,6 +59,9 @@ `(#:tests? #f ; no 'check' target #:phases (modify-phases %standard-phases + (replace 'bootstrap + (lambda _ + (invoke "autoconf"))) ;; Some XML-related binaries are required for asciidoc's proper usage. ;; Without these, asciidoc fails when parsing XML documents, either ;; reporting a missing "xmllint" binary or, when passed the |