diff options
author | Jos I. Boumans <kane@dwim.org> | 2005-01-28 18:38:27 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-02-08 10:22:22 +0000 |
commit | 8f2fd5317a8da44171ae4098be674cf779827374 (patch) | |
tree | 7bc23129ed549ea6b911da440de7b5ff657c40c9 /installperl | |
parent | f0df5f8b34ab27424e2b758635888ff39aa69398 (diff) | |
download | perl-8f2fd5317a8da44171ae4098be674cf779827374.tar.gz |
Add Module::CoreList to bleadperl.
Subject: [PATCH] Module::CoreList 1.98 integration (was: Re: [RFC] More core integration)
From: "Jos I. Boumans" <kane@xs4all.net>
Message-Id: <097CE3D0-714B-11D9-B82E-000A956B0E06@xs4all.net>
p4raw-id: //depot/perl@23947
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/installperl b/installperl index aaa17ea31f..1bdf250e59 100755 --- a/installperl +++ b/installperl @@ -805,8 +805,9 @@ sub installlib { $dir =~ m{/t(?:/|$)}; # ignore the cpan script in lib/CPAN/bin, the instmodsh and xsubpp # scripts in lib/ExtUtils, and the prove script in lib/Test/Harness + # as well as the corelist script from lib/Module/CoreList/bin # (they're installed later with other utils) - return if $name =~ /^(?:cpan|instmodsh|prove)\z/; + return if $name =~ /^(?:cpan|instmodsh|prove|corelist)\z/; # ignore the Makefiles return if $name =~ /^makefile$/i; # ignore the test extensions |