mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: gtk+: Pass --with-html-dir=$doc.
Fixes a regression introduced in 6b1f238
.
* gnu/packages/gtk.scm (gtk+)[arguments]: Add #:configure-flags.
This commit is contained in:
parent
13cc689ae8
commit
260b07a7d0
1 changed files with 6 additions and 1 deletions
|
@ -505,7 +505,12 @@ (define-public gtk+
|
||||||
("python-wrapper" ,python-wrapper)
|
("python-wrapper" ,python-wrapper)
|
||||||
("xorg-server" ,xorg-server)))
|
("xorg-server" ,xorg-server)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(;; 47 MiB goes to "out" (24 of which is locale data!), and 26 MiB goes
|
||||||
|
;; to "doc".
|
||||||
|
#:configure-flags (list (string-append "--with-html-dir="
|
||||||
|
(assoc-ref %outputs "doc")
|
||||||
|
"/share/gtk-doc/html"))
|
||||||
|
#:phases
|
||||||
(alist-cons-before
|
(alist-cons-before
|
||||||
'configure 'pre-configure
|
'configure 'pre-configure
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Loading…
Reference in a new issue