Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20272/lib/Module/Build
Modified Files:
Base.pm
Log Message:
This check wasn't doing anything, and I'm not sure these fields should all be required
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.506
retrieving revision 1.507
diff -u -d -r1.506 -r1.507
--- Base.pm 23 Oct 2005 04:38:34 -0000 1.506
+++ Base.pm 24 Oct 2005 02:58:07 -0000 1.507
@@ -2833,7 +2833,6 @@
foreach (qw(dist_name dist_version dist_author dist_abstract license)) {
(my $name = $_) =~ s/^dist_//;
- die "Missing required field '$name' for META.yml\n" unless length($name);
$node->{$name} = $self->$_();
}
if (defined( $self->license ) &&
|