Update of /cvsroot/module-build/Module-Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23059
Modified Files:
Build.PL
Log Message:
Some changes to the way Module::Build itself is bundled up for
distribution: 1) it now autogenerates the listing of actions near the
top of the M::B documentation. 2) it now autogenerates a listing of
get/set accessors that wouldn't otherwise be documented at all. 3) it
now erases any trace of the ModuleBuildBuilder module that does this
stuff, since it's not necessary for people downloading from CPAN to
know anything about it.
Index: Build.PL
===================================================================
RCS file: /cvsroot/module-build/Module-Build/Build.PL,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -d -r1.50 -r1.51
*** Build.PL 28 Nov 2004 02:36:03 -0000 1.50
--- Build.PL 18 Dec 2004 20:57:04 -0000 1.51
***************
*** 5,15 ****
use File::Spec;
use lib File::Spec->catdir('lib');
- use lib File::Spec->catdir('inc');
# We use Module::Build to test & install itself.
use Module::Build;
# A custom builder that does some special stuff during the 'dist' phase
use ModuleBuildBuilder;
my $build = new ModuleBuildBuilder
--- 5,17 ----
use File::Spec;
use lib File::Spec->catdir('lib');
# We use Module::Build to test & install itself.
use Module::Build;
+ # <remove_me> This code is only present for M::B developers, not on CPAN
+ use lib File::Spec->catdir('inc');
# A custom builder that does some special stuff during the 'dist' phase
use ModuleBuildBuilder;
+ # </remove_me>
my $build = new ModuleBuildBuilder
|