mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: docbook2x: Fix build.
* gnu/packages/docbook.scm (docbook2x): Build from source and fix build. Change-Id: Iefc3e068217875b5de5e79369b24a55b573df042
This commit is contained in:
parent
609acbbc29
commit
c4f9895bfe
1 changed files with 4 additions and 0 deletions
|
@ -923,11 +923,15 @@ (define-public docbook2x
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
#:make-flags ''("AM_MAKEINFOHTMLFLAGS=\"--no-split\"")
|
||||||
#:modules '((guix build gnu-build-system)
|
#:modules '((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(srfi srfi-26))
|
(srfi srfi-26))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'build 'clean
|
||||||
|
(lambda _
|
||||||
|
(invoke "make" "clean")))
|
||||||
(add-after 'install 'move-doc
|
(add-after 'install 'move-doc
|
||||||
(lambda _
|
(lambda _
|
||||||
(let* ((old (string-append #$output "/share/doc"))
|
(let* ((old (string-append #$output "/share/doc"))
|
||||||
|
|
Loading…
Reference in a new issue