[Module-build-checkins] Module-Build/lib/Module/Build Base.pm,1.540,1.541
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <kwi...@us...> - 2006-01-20 14:29:27
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27316/lib/Module/Build Modified Files: Base.pm Log Message: Changes to work with recent YAML.pm Index: Base.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v retrieving revision 1.540 retrieving revision 1.541 diff -u -d -r1.540 -r1.541 --- Base.pm 20 Jan 2006 01:17:13 -0000 1.540 +++ Base.pm 20 Jan 2006 14:29:14 -0000 1.541 @@ -2987,6 +2987,7 @@ if ($self->_mb_feature('YAML_support')) { require YAML; + require YAML::Node; # We use YAML::Node to get the order nice in the YAML file. $self->prepare_metadata( my $node = YAML::Node->new({}) ); |