in reply to Re^2: ExtUtils::MakeMaker and dot files
in thread ExtUtils::MakeMaker and dot files
My script is something like: make manifest; make clean; removeAppleDouble; perl Makefile.PL; make; make install
:) Well, there's your problem!
make manifest without a MANIFEST.SKIP gets you into trouble
$ dmake manifest C:\perl\5.14.1\bin\MSWin32-x86-multi-thread\perl.exe "-MExtUtils::Mani +fest=mkmanifest" -e mkmanifest Added to MANIFEST: .AppleDouble/Foo.pm
OOOPS
$ dmake help |grep "make manifest" -A3 make manifest rewrites the MANIFEST file, adding all remaining files found ( +See ExtUtils::Manifest::mkmanifest() for details)
With an addition to MANIFEST.SKIP all goes as planned
$ dmake manifest C:\perl\5.14.1\bin\MSWin32-x86-multi-thread\perl.exe "-MExtUtils::Mani +fest=mkmanifest" -e mkmanifest $ dmake skipcheck C:\perl\5.14.1\bin\MSWin32-x86-multi-thread\perl.exe "-MExtUtils::Mani +fest=skipcheck" -e skipcheck Skipping .AppleDouble/Foo.pm Skipping Makefile Skipping MANIFEST.bak Skipping MYMETA.json Skipping MYMETA.yml
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: ExtUtils::MakeMaker and dot files
by SleepyJay (Beadle) on Jul 19, 2012 at 18:18 UTC | |
by Anonymous Monk on Jul 20, 2012 at 00:59 UTC | |
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 |