Skip Menu |

This queue is for tickets about the Module-Build CPAN distribution.

Report information
The Basics
Id: 87337
Status: open
Priority: 0/
Queue: Module-Build

People
Owner: dagolden [...] cpan.org
Requestors: srenner [...] comcast.net
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.3603
Fixed in: (no value)



Subject: man page generation on Windows.
David, I contributed some code back a few years ago to fix issues with HTML generation on ActiveState Perl distros (RT#53478). The changes were added to version .3603 and one of the code changes was to disable man page generation on non-Unix systems. I noticed that in Base.pm, that this code is commented out (line 5231). There is a note in the code that you commented out the line because it causes t/manifypods.t to fail on windows. Here is a fix for t/manifypods.t that will allow you to uncomment the code in Base.pm and disable man page generation on windows. The code change is: File t/manifypods.t, change line 10 from: if ( Module::Build::ConfigData->feature('manpage_support') ) { to: if ( Module::Build::ConfigData->feature('manpage_support') && Module::Build::is_unixish() ) { This change uses the same logic that is used in 'install_map' in Base.pm, only Unix like systems will test for manpage generation, otherwise the tests are skipped. Scott
David, I noticed that an old e-mail address is still associated with my PAUSE account. Please use my Comcast account (srenner@comcast.net) for replies. Thanks! Scott