Author: jkeenan
Date: Tue Feb 12 19:01:34 2008
New Revision: 25680

Modified:
   branches/tcif/lib/Parrot/Configure/Messages.pm

Log:
Make sure that print_conclusion() always gets a defined value for  argument.

Modified: branches/tcif/lib/Parrot/Configure/Messages.pm
==============================================================================
--- branches/tcif/lib/Parrot/Configure/Messages.pm      (original)
+++ branches/tcif/lib/Parrot/Configure/Messages.pm      Tue Feb 12 19:01:34 2008
@@ -32,7 +32,7 @@
 
 sub print_conclusion {
     my $conf = shift;
-    my $make = shift;
+    my $make = shift || q{};
     my @failed_steps = @{ $conf->{log} };
     my @logged_failed_steps = ();
     for (my $i = 1; $i <= $#failed_steps; $i++) {

Reply via email to