mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: perl-feed-find: Fix build with Perl 5.26.0.
* gnu/packages/web.scm (perl-feed-find)[arguments]: Set PERL_USE_UNSAFE_INC in new 'set-env' phase.
This commit is contained in:
parent
f27954a077
commit
70629b6d9a
1 changed files with 5 additions and 1 deletions
|
@ -1980,7 +1980,11 @@ (define-public perl-feed-find
|
|||
(build-system perl-build-system)
|
||||
(arguments
|
||||
;; Tests expect to query files at http://stupidfool.org/perl/feeds/
|
||||
`(#:tests? #f))
|
||||
`(#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'set-env
|
||||
(lambda _ (setenv "PERL_USE_UNSAFE_INC" "1"))))))
|
||||
(inputs
|
||||
`(("perl-class-errorhandler" ,perl-class-errorhandler)
|
||||
("perl-html-parser" ,perl-html-parser)
|
||||
|
|
Loading…
Reference in a new issue