rgs & ghostbar,
On May 29, 2007, at 18:37 , Rafael Garcia-Suarez wrote:
>> ! Makefile.pl
>> Encode used to suppress man page generation.
Now it does.
>> http://r
t.cpan.org/NoAuth/Bug.html?id=#27200
>
> Except this chunk. Man pages are generated by
installman inside the
> core. So you need to make this conditional, e.g. by
using the same
> method as Digest::MD5 :
>
> push( extra, 'MAN3PODS' => {}) if $PERL_CORE; # Pods
built by
> installman.
>
> (and likewise for MAN1PODS)
Below is a preliminary patch that does just that. Tell me
if it
makes both of you happy.
Dan the Encode Maintainer
--- Makefile.PL 2006/05/03 18:24:10 2.3
+++ Makefile.PL 2007/05/29 10:06:16
 -25,6
+25,8 
$ARGV and push exe_files, more_exe_files;
$ARGV and push pmlibdirs,
"ucm";
+my man = ();
+ man
= ( MAN1PODS => {}, MAN3PODS => {} ) if $PERL_CORE;
WriteMakefile(
NAME => "Encode",
 -36,8
+38,7 
SUFFIX => 'gz',
DIST_DEFAULT => 'all tardist',
},
- MAN1PODS => {},
- MAN3PODS => {},
+ man,
INC => "-I./Encode",
PMLIBDIRS => pmlibdirs,
INSTALLDIRS => 'perl',
|