diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-08-05 00:11:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-08-05 00:31:26 +0200 |
commit | a56bf101c603aac3c7e2fc47bd8bd025f2ed44a6 (patch) | |
tree | 1458ec8e51c4e58ed6b0dfde0ed1a18f7ed0cdf6 /gnu/packages/bioinformatics.scm | |
parent | 240d3ceff78464a160d099adfb6463f4f17d6616 (diff) | |
download | guix-a56bf101c603aac3c7e2fc47bd8bd025f2ed44a6.tar.gz |
gnu: perl: Work around more "dotless @INC" build issues.
* gnu/packages/web.scm (perl-www-curl)[arguments]: Add 'set-search-path' phase. * gnu/packages/bioinformatics.scm (ngs-sdk)[arguments]: Augment 'configure' phase to set PERL5LIB. * gnu/packages/image.scm (steghide)[arguments]: Add #:phases argument.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 6bbbe33784..2b4b400c19 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -4680,6 +4680,10 @@ Roche 454, Ion Torrent and Pacific BioSciences SMRT.") 'configure (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) + ;; Allow 'konfigure.perl' to find 'package.prl'. + (setenv "PERL5LIB" + (string-append ".:" (getenv "PERL5LIB"))) + ;; The 'configure' script doesn't recognize things like ;; '--enable-fast-install'. (zero? (system* "./configure" |