I'm running MM 6.10_07 on a RH 7.3 box with perl 5.6.1 and have put the
following in my Makefile.PL:
WriteMakefile(
NAME => 'POE::Component::Enc',
VERSION_FROM => 'Enc.pm',
$] < 5.005 ? () : (
AUTHOR => 'Erick Calder <[EMAIL PROTECTED]>',
ABSTRACT_FROM => 'Enc.pm',
),
PREREQ_PM => {
POE::Component::Child => '1.10',
Test::Simple => 0,
},
NORECURS => 1, # to avoid sub-modules
);
here's what I get:
[EMAIL PROTECTED]:/home/ekkis/POE/Component/Enc # perl Makefile.PL
Checking if your kit is complete...
Looks good
Writing Makefile for POE::Component::Enc
[EMAIL PROTECTED]:/home/ekkis/POE/Component/Enc # make
make[1]: Entering directory `/home/ekkis/POE/Component/Enc/Mp3'
make[1]: Leaving directory `/home/ekkis/POE/Component/Enc/Mp3'
Manifying blib/man3/POE::Component::Enc.3pm
[EMAIL PROTECTED]:/home/ekkis/POE/Component/Enc #
and running "make test" also changes into the Mp3/ which SHOULD NOT happen,
right?
- e