Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15603/lib/Module/Build
Modified Files:
Tag: release-0_26_branch
Base.pm
Log Message:
Don't die without dist_author
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.340.2.33
retrieving revision 1.340.2.34
diff -u -d -r1.340.2.33 -r1.340.2.34
--- Base.pm 28 Aug 2005 15:04:44 -0000 1.340.2.33
+++ Base.pm 4 Dec 2005 01:37:21 -0000 1.340.2.34
@@ -2229,7 +2229,7 @@
name: $p->{dist_name}
version: $p->{dist_version}
author:
-@{[ join "\n", map " - $_", @{$self->dist_author} ]}
+@{[ join "\n", map " - $_", @{$self->dist_author || []} ]}
abstract: @{[ $self->dist_abstract ]}
license: $p->{license}
generated_by: Module::Build version $Module::Build::VERSION, without YAML.pm
|