in reply to MANIFEST with spaces in filenames?
maniread in ExtUtils::Manifest treats everything after the first whitespace as a comment. Is there some way to specify a filename that contains a space? Renaming the file isn't an option for me.No, but here is a novel idea though (:
use ExtUtils::Manifest(); sub ExtUtils::Manifest::maniread { print "blah blah blah"; } use ExtUtils::MakeMaker; ...
Previously I was leaving them out of the MANIFEST and added a PREOP in Makefile.PL to copy the files manually. Unfortunately, I've switched to Module::Install and it doesn't seem to have equivalent functionality. :(According to scandeps, Module::Install doesn't use ExtUtils::Manifest so I'm not sure why you're looking at ExtUtils::Manifest, but you can always
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: MANIFEST with spaces in filenames?
by coppit (Beadle) on Sep 16, 2004 at 04:11 UTC |