Author: dagolden
Date: Wed Feb 10 06:18:36 2010
New Revision: 13820

Modified:
   Module-Build/trunk/Changes
   Module-Build/trunk/lib/Module/Build/Base.pm

Log:
add newline to changing sharpbang message (RT#54474)

Modified: Module-Build/trunk/Changes
==============================================================================
--- Module-Build/trunk/Changes  (original)
+++ Module-Build/trunk/Changes  Wed Feb 10 06:18:36 2010
@@ -2,6 +2,11 @@
 
 0.36_04 - 
 
+ Bug fixes:
+
+ - Added missing newline to "Changing sharpbang" messages under verbose
+   output (RT#54474)
+
 0.3603 - Mon Jan 18 22:28:59 EST 2010
 
 (Oops, I released the last one before I realized this should have been

Modified: Module-Build/trunk/lib/Module/Build/Base.pm
==============================================================================
--- Module-Build/trunk/lib/Module/Build/Base.pm (original)
+++ Module-Build/trunk/lib/Module/Build/Base.pm Wed Feb 10 06:18:36 2010
@@ -2934,7 +2934,7 @@
     next unless $cmd =~ /perl/i;
     my $interpreter = $self->{properties}{perl};
 
-    $self->log_verbose("Changing sharpbang in $file to $interpreter");
+    $self->log_verbose("Changing sharpbang in $file to $interpreter\n");
     my $shb = '';
     $shb .= $c->get('sharpbang')."$interpreter $arg\n" if $does_shbang;
 

Reply via email to