Re: [Module::Build] META.yml and platform dependencies.
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <ke...@ma...> - 2006-04-20 01:34:51
|
On Apr 19, 2006, at 1:46 AM, Andreas J. Koenig wrote: > Index: lib/CPAN.pm > =================================================================== > --- lib/CPAN.pm (revision 717) > +++ lib/CPAN.pm (working copy) > @@ -5378,6 +5378,11 @@ > $CPAN::Frontend->mywarn("Error while parsing META.yml: > $@"); > return; > } > + if (not exists $self->{yaml_content}{dynamic_content} > + or $self->{yaml_content}{dynamic_content} > + ) { > + $self->{yaml_content} = undef; > + } > } s/content/config/g; Just a reminder, in case you missed it earlier in the discussion, that once the Build.PL script gets run, there's a file _build/prereqs that will dependably list the prereqs, including responses to any user questions, probing of the system, etc. -Ken |