I have an existing structure of modules that live and work well and are installed via one Makefile. I want to add to that structure new dirs/mods (i have added perl module shells according to the needed Object Oriented heirarchy). While I flush out the new dirs/mods, I want to be able to bring each new module live as I finish it (add it via the make process). I viewed a few messages in the Archives that suggested using a MANIFEST.SKIP file. I edited the file and included regexes for the dirs/mods that I wanted left out. I ran:
$>perl Makefile.PL
$>make manifest
$>make realclean
I noticed that this gave me the correct MANIFEST file with only the dirs/mods that I want to install via make, I also saw confirmation via STDOUT that the modules were being excluded from MANIFEST. However, when I later did:
$>perl Makefile.PL
$>make
I noticed via STDOUT and also in my Makefile that the mods I wanted to exclude are still being prepared.
Any help or comments would be much appreciated. Thank you.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.