Skip Menu |

This queue is for tickets about the Module-Build CPAN distribution.

Report information
The Basics
Id: 47133
Status: resolved
Priority: 0/
Queue: Module-Build

People
Owner: Nobody in particular
Requestors: csjewell [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in:
  • 0.33
  • 0.33_02
Fixed in: (no value)



Subject: Small appearance bug in distmeta action... (patch attached)
The do_create_license routine needs a \n after "Creating LICENSE file", as seen below: C:\Documents and Settings\Curtis\Desktop\Perl Work\Module-Build-Functions>Build distmeta Writing inc\Module\Build\Functions.pm Creating Makefile.PL Deleting README Creating README using Pod::Readme Creating LICENSE fileDeleting LICENSE Deleting META.yml Creating META.yml A patch is attached to add it.
Subject: Module-Build-do_create_license-appearance.patch
Index: lib/Module/Build/Base.pm =================================================================== --- lib/Module/Build/Base.pm (revision 12860) +++ lib/Module/Build/Base.pm (working copy) @@ -3203,7 +3203,7 @@ sub do_create_license { my $self = shift; - $self->log_info("Creating LICENSE file"); + $self->log_info("Creating LICENSE file\n"); my $l = $self->license or die "No license specified";
Thanks. Applied to trunk.