diff options
-rw-r--r-- | gnu/packages/perl.scm | 10 | ||||
-rw-r--r-- | gnu/packages/xorg.scm | 6 |
2 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 1a96ee237b..93fc4059d8 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -8165,6 +8165,16 @@ common serialisation formats such as JSON or CBOR.") (base32 "1lq4p3mqqljhhy8wyiyahris33j4m5qfzpi6iacmcqjzw5g4afbm")))) (build-system perl-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'configure 'set-perl-search-path + (lambda _ + ;; Work around "dotless @INC" build failure. + (setenv "PERL5LIB" + (string-append (getcwd) ":" + (getenv "PERL5LIB"))) + #t))))) (propagated-inputs `(("perl-unicode-normalize" ,perl-unicode-normalize))) (home-page "http://search.cpan.org/dist/Unicode-Collate") diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index a05a4ba6e6..71d8e83fa4 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -5764,6 +5764,12 @@ programs that cannot use the window system directly.") #:parallel-build? #f #:phases (modify-phases %standard-phases + (add-before 'configure 'set-perl-search-path + (lambda _ + (setenv "PERL5LIB" + (string-append (getcwd) ":" + (getenv "PERL5LIB"))) + #t)) (add-before 'build 'patch-Makefile (lambda* (#:key inputs #:allow-other-keys) (substitute* "Makefile" |