diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-04-19 09:59:23 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-04-22 14:38:14 -0500 |
commit | cc8ddcb09771dff47c669a4e585f91c28d08359f (patch) | |
tree | f6da4fda813079833b1ea8f33563795d98f17008 /gnu/packages/perl.scm | |
parent | d8d6d096be8c37076060a3bc063582c404de1205 (diff) |
gnu: perl: Fix Module::Pluggable for symlink forests.
* gnu/packages/patches/perl-module-pluggable-search.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
* gnu/packages/perl.scm (perl)[source]: Add patch.
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index e55eb8791d..80c476b2b1 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -44,7 +44,9 @@ (sha256 (base32 "15qxzba3a50c9nik5ydgyfp62x7h9vxxn12yd1jgl93hb1wj96km")) - (patches (list (search-patch "perl-no-sys-dirs.patch"))))) + (patches (map search-patch + '("perl-no-sys-dirs.patch" + "perl-module-pluggable-search.patch"))))) (build-system gnu-build-system) (arguments '(#:tests? #f |