in reply to Re: MANIFEST with spaces in filenames?
in thread MANIFEST with spaces in filenames?
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./usr/bin/perl -Iinc "-MExtUtils::Manifest=manicopy,maniread" \ -e "manicopy(maniread(),'Mail-Mbox-MessageParser-1.21.0', 'bes +t');"
In the meantime, I've done the following:
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";
|
|---|