Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 34aa3576a14efea0cbd14b0c0965b70ee9448535
https://github.com/Perl/perl5/commit/34aa3576a14efea0cbd14b0c0965b70ee9448535
Author: James E Keenan <[email protected]>
Date: 2021-09-11 (Sat, 11 Sep 2021)
Changed paths:
M installhtml
Log Message:
-----------
Run installhtml with $|
This will facilitate debugging of tickets like
https://github.com/Perl/perl5/issues/19052 and
https://github.com/Perl/perl5/issues/11859.
Commit: f5e0f10e7065bfa21679406e5c9a604536f75585
https://github.com/Perl/perl5/commit/f5e0f10e7065bfa21679406e5c9a604536f75585
Author: James E Keenan <[email protected]>
Date: 2021-09-11 (Sat, 11 Sep 2021)
Changed paths:
M installhtml
Log Message:
-----------
installhtml: set default podpath to './lib'
Previously (as reported nine years ago by Nick Clark in what is now
https://github.com/Perl/perl5/issues/11859), the default setting for
'podpath' was '.'. This meant that, unless you explicitly set a
colon-delimited list of directories as the value for 'podpath', all
files containing POD under '.' were HTML-ified and installed. The only
directories that always should have HTML-ized POD installed are 'lib'
and 'pod' itself.
Invoking 'installhtml' like the following should now DTRT:
export HTMLDIR=$HOMEDIR/tmp/installhtml && \
./perl -Ilib ./installhtml \
--htmldir=$HTMLDIR \
--htmlroot=$HTMLDIR \
--splithead=pod/perlipc \
--recurse \
--verbose 2>&1 | tee installhtml.log
Compare: https://github.com/Perl/perl5/compare/c1d304d23426...f5e0f10e7065