in reply to Re^4: ExtUtils::MakeMaker and dot files
in thread ExtUtils::MakeMaker and dot files
The MANIFEST did not call for the files in the .AppleDouble folder, but they are still copied to blib. This is still a problem.
Well, .AppleDouble/Foo.pm sure did not get copied to blib (I tested)
But lib/.AppleDouble/Foop.pm did -- you should have been more specific!
But I'd say its still not a problem because the purpose of MANIFEST.SKIP is to control which files get put into a tarball when you use make dist -- and if you do use make dist then the resulting tarball will be free of .AppleDouble folders
Otherwise you'd have to use the icky PM_FILTER option, or the laborious PM option
PM => { 'Foo.pm' => '$(INST_LIBDIR)/Foo.pm', 'lib/Foop.pm' => '$(INST_LIBDIR)/Foop.pm', },
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: ExtUtils::MakeMaker and dot files
by SleepyJay (Beadle) on Jul 20, 2012 at 18:22 UTC | |
by SleepyJay (Beadle) on Jul 20, 2012 at 19:59 UTC | |
by Anonymous Monk on Jul 21, 2012 at 00:38 UTC |