mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: po4a: Work around "dotless @INC" build issues.
* gnu/packages/gettext.scm (po4a)[arguments]: Add build phase "set-search-path".
This commit is contained in:
parent
d39238cf3d
commit
dd54d3d5da
1 changed files with 7 additions and 0 deletions
|
@ -144,6 +144,13 @@ (define-public po4a
|
|||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'configure 'set-search-path
|
||||
(lambda _
|
||||
;; Work around "dotless @INC" build failure.
|
||||
(setenv "PERL5LIB"
|
||||
(string-append (getcwd) ":"
|
||||
(getenv "PERL5LIB")))
|
||||
#t))
|
||||
;; FIXME: One test fails as we don't have SGMLS.pm
|
||||
(add-before 'check 'disable-sgml-test
|
||||
(lambda _
|
||||
|
|
Loading…
Reference in a new issue