Hi Emmanuel,
On Tue, Mar 02, 2010 at 06:54:24PM -0500, Emmanuel Seyman via RT wrote:
Show quoted text> Queue: File-DirCompare
> Ticket <URL:
https://rt.cpan.org/Ticket/Display.html?id=55126 >
>
> * Gavin Carr via RT [02/03/2010 13:34] :
> >
> > According to our records, your request has been resolved. If you have any
> > further questions or concerns, please respond to this message.
>
> I'm still seeing it, even on version 0.6.
>
> [manu@orient File-DirCompare-0.6]$ perl Makefile.PL
> Checking if your kit is complete...
> Warning: the following files are missing in your kit:
> 't/t10/new/aaa
> 't/t10/new/ggg
> 't/t10/new/jjj
> 't/t10/new/xxx
> 't/t10/old/aaa
> 't/t10/old/ddd
> 't/t10/old/ggg
> 't/t10/old/uuu
> 't/t10/old/xxx
> Please inform the author.
> Writing Makefile for File::DirCompare
>
> Emmanuel
>
> PS: Any chance we can get a changelog included in the package? It would
> make things easier on my end.
Hmmm, weird. What platform are you on? What version of perl, and what
version of ExtUtils::MakeMaker?
The problem is that this is specifically a test on files that have
whitespace in them, and your 'perl Makefile.PL' is truncating the
lines at the whitespace. The actual lines in the MANIFEST are:
't/t10/new/aaa bbb ccc'
't/t10/new/ggg hhh iii'
't/t10/new/jjj kkk lll'
't/t10/new/xxx yyy zzz/bar'
't/t10/new/xxx yyy zzz/bog'
't/t10/old/aaa bbb ccc'
't/t10/old/ddd eee fff'
't/t10/old/ggg hhh iii'
't/t10/old/uuu vvv www/foo'
't/t10/old/xxx yyy zzz/bar'
't/t10/old/xxx yyy zzz/foo'
Do you see those files under t/t10/new and t/t10/old?
I'm not sure what the issue is. It's working ok for me on perl 5.10
on linux and ExtUtils::MakeMaker 6.56.
Cheers,
Gavin