diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-06 15:05:38 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-06 15:05:38 +0100 |
commit | 5bb674a0cdb1e2d9bb85cfb87ccd4f683ce820ce (patch) | |
tree | ceb6d3a9480ad75208caabafce28f4fa4fa2d46c | |
parent | 5531782d1c140cf551db891f8a23eab3dc434079 (diff) | |
download | guix-5bb674a0cdb1e2d9bb85cfb87ccd4f683ce820ce.tar.gz |
gnu: perl-czplib: Fix installation directory.
* gnu/packages/perl.scm (perl-czplib)[arguments]: Fix installation directory.
-rw-r--r-- | gnu/packages/perl.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index fb975d92a0..978062d262 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -1647,9 +1647,8 @@ It returns to the previous working directory when the object is destroyed.") (lambda* (#:key outputs #:allow-other-keys) (copy-recursively "." (string-append (assoc-ref outputs "out") - "/plib/perl5/site_perl/" - ,(package-version perl) - "/czplib/")) + "/lib/perl5/site_perl/" + ,(package-version perl))) #t))))) (home-page "https://sourceforge.net/projects/czplib/") (synopsis "Library for genomic analysis") |