Howdy All,
I have a subclass of Module::Build that *always* generates HTML
documentation as part of the C<./Build docs> action. This is
extremely annoying, because this doesn't happen with any of my other
modules (none of which have subclasses of Module::Build). There is no
mention of "html" anywhere in my Build.PL file or my subclass.
Looking at Module::Build::Base, I see:
sub ACTION_docs {
my $self = shift;
$self->depends_on('code');
$self->depends_on('manpages', 'html');
}
Which seems to suggest that html docs would always be created, but of
course, they are not.
So, um, can anyone tell me what I'm missing? I want to figure out why
my subclass always generates the HTML, and to start, I'd like to know
what's keeping any of my other modules from generating HTML, given
that the ACTION_docs method looks like it would always generate HTML.
Many TIA,
David
-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php
|