I'm looking to see if we can make the generated one temporary easily.

David

On Fri, Apr 16, 2010 at 10:53 AM, Curtis Jewell
<[email protected]> wrote:
>> And if people really need a skeleton MANIFEST.SKIP, we can add "Build
>> manifest_skip" to generate a default one (that then persists)
>>
>> -- David
>
> Easy enough. Practically a one-liner.
>
> sub ACTION_manifest_skip {
>
>    if (not -e 'MANIFEST.SKIP') {
>        # I'm assuming we're already in the right directory.
>        open $skipfile, '>', 'MANIFEST.SKIP';
>        print {$skipfile} "#!include_default\n"; # See
>        
> http://search.cpan.org/~rkobes/ExtUtils-Manifest-1.58/lib/ExtUtils/Manifest.pm#MANIFEST.SKIP
>        close $skipfile;
>    }
> }
>
> --
> Curtis Jewell
> [email protected]           http://csjewell.dreamwidth.org/
> [email protected]   http://csjewell.comyr.org/perl/
>
> "Your random numbers are not that random" -- perl-5.10.1.tar.gz/util.c
>
> Strawberry Perl for Windows betas: http://strawberryperl.com/beta/
>
>

Reply via email to