Subject: | INSTALLMAN?DIR and INST_MAN?DIR not recognized |
I'm trying to suppress installation of man pages for an internal-use-only module, and it would seem
that none of the INST*MAN*DIR options work:
alester@flr4[~/play]$ cat makemaker.pl
#!/usr/bin/perl -w
use strict;
use ExtUtils::MakeMaker;
print "Using ExtUtils::MakeMaker $ExtUtils::MakeMaker::VERSION\n";
&WriteMakefile(
NAME => 'Foo',
INST_MAN1DIR => 'none',
INST_MAN3DIR => 'none',
INSTALLMAN1DIR => 'none',
INSTALLMAN3DIR => 'none',
);
alester@flr4[~/play]$ perl makemaker.pl
Using ExtUtils::MakeMaker 5.90_01
'INSTALLMAN1DIR' is not a known MakeMaker parameter name.
'INSTALLMAN3DIR' is not a known MakeMaker parameter name.
'INST_MAN1DIR' is not a known MakeMaker parameter name.
'INST_MAN3DIR' is not a known MakeMaker parameter name.
Writing Makefile for Foo