Actually, Module::Build::Base uses ExtUtils::Manifest. Even worse, when you run "make dist" you get:
/usr/bin/perl -Iinc "-MExtUtils::Manifest=manicopy,maniread" \ -e "manicopy(maniread(),'Mail-Mbox-MessageParser-1.21.0', 'bes +t');"
This means my only real option is to copy ExtUtils/Manifest.pm to inc/ and then modify it. Bleh. Instead, I've asked the author to provide support for escaped spaces in the MANIFEST.

In the meantime, I've done the following:

  1. comment out the lines in the MANIFEST that involve files with spaces
  2. Put the following at the end of Makefile.PL:
    print "Fixing PREOP in the Makefile to copy files with spaces during + building\n"; my $commands = q{; \$(CP) t/mailboxes/*\\\\ * \$(DISTVNAME)/t/mailbo +xes; \$(CP) t/results/*\\\\ * \$(DISTVNAME)/t/results}; system "$^X -pi -e 's|^(PREOP\\s*=.*)|\$1$commands|' Makefile";
The above code should work for both ExtUtils::MakeMaker and Module::Install.

In reply to Re^2: MANIFEST with spaces in filenames? by coppit
in thread MANIFEST with spaces in filenames? by coppit

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.