Subject: | please use $(MAN3EXT) instead of 3 in Makefile.PL |
Hi,
on some systems (Debian, for example) manpage sections other than 3 are
used. so when installing the man page please use the $(MAN3EXT) makefile
variable instead of hard coding .3. here is a patch to fix this:
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -26,7 +26,7 @@
},
'MAN3PODS' => {
- 'lib/File.pm' => '$(INST_MAN3DIR)/Test::File.3',
+ 'lib/File.pm' => '$(INST_MAN3DIR)/Test::File.$(MAN3EXT)',
},
clean => { FILES => q|Test-File-* test_files| },