CC: | Adam Kennedy <cpan [...] ali.as> |
From: | Richard Soderberg <rsod [...] cpan.org> |
Subject: | Support for no_index (META.yml) |
Date: | Mon, 10 Jan 2005 18:18:52 -0800 |
To: | bug-Module-Build [...] rt.cpan.org |
Around line 2241 of Base.pm, at the following line:
$node->{provides} = $self->find_dist_packages;
Immediately after that, I was thinking that adding the following line
would help Module::Build support the 'no_index' pragma of META.yml,
which helps indicate to PAUSE what shouldn't be indexed.
$node->{no_index} = $p->{no_index} if exists $p->{no_index};
Problem is, I know very little about Module::Build -- but I figured I'd
pass along the feature request.
- R.