in reply to How to pass custom options to pod2man from Extutils::MakeMaker?

You can override EU::MM methods in the MY package, see Overriding MakeMaker Methods

MM_Any suggests you can override POD2MAN_macro to add extra parameters to pod2man.

  • Comment on Re: How to pass custom options to pod2man from Extutils::MakeMaker?

Replies are listed 'Best First'.
Re^2: How to pass custom options to pod2man from Extutils::MakeMaker?
by nicholashubbard (Initiate) on Aug 18, 2025 at 20:51 UTC
    I was able to get this to work by overriding the manifypods subroutine with MY::manifypods subroutine. However, it is still unclear how to override POD2MAN_macro. Nothing in the documentation that was linked actually shows an example of how to do this.