diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-04-26 12:50:09 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-04-26 12:52:45 +0200 |
commit | 28cae3389146ee575e29c6dfd77987883503568e (patch) | |
tree | ce15d82b10a26df01983119e6fe7127e6784f11c /gnu/packages/perl.scm | |
parent | 90a8ef8c4325f97da39d5326b1cd110b3f3984bf (diff) | |
download | patches-28cae3389146ee575e29c6dfd77987883503568e.tar patches-28cae3389146ee575e29c6dfd77987883503568e.tar.gz |
gnu: perl@5.26.2: Don't export variable.
This prevents it from ending up in user profiles, which would fail due to
wrong search paths as reported in <https://bugs.gnu.org/31216#43>.
* gnu/packages/perl.scm (perl-5.26.2): Use DEFINE instead of DEFINE-PUBLIC.
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 3edb2b6168..4375c4df2b 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -161,7 +161,7 @@ ;; Fixes CVE-2018-6797, CVE-2018-6798, and CVE-2018-6913. ;; See <https://metacpan.org/changes/release/SHAY/perl-5.26.2>. -(define-public perl-5.26.2 +(define perl-5.26.2 (package (inherit perl) (version "5.26.2") |