mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: xpdf: Fix detection of freetype.
* gnu/packages/pdf.scm (xpdf)[configure-flags]: Add flag to correctly detect freetype. Otherwise, the xpdf binary is not built.
This commit is contained in:
parent
1cb9c00614
commit
bdbf227fa3
1 changed files with 5 additions and 1 deletions
|
@ -127,7 +127,11 @@ (define-public xpdf
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; there is no check target
|
`(#:tests? #f ; there is no check target
|
||||||
#:parallel-build? #f ; build fails randomly on 8-way machines
|
#:parallel-build? #f ; build fails randomly on 8-way machines
|
||||||
|
#:configure-flags
|
||||||
|
(list (string-append "--with-freetype2-includes="
|
||||||
|
(assoc-ref %build-inputs "freetype")
|
||||||
|
"/include/freetype2"))
|
||||||
#:phases
|
#:phases
|
||||||
(alist-replace
|
(alist-replace
|
||||||
'install
|
'install
|
||||||
|
|
Loading…
Reference in a new issue