[svn:parrot] r47186 - branches/tt1452_configure_debug/config/auto

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Mon May 31 03:22:35 UTC 2010


Author: jkeenan
Date: Mon May 31 03:22:34 2010
New Revision: 47186
URL: https://trac.parrot.org/parrot/changeset/47186

Log:
Update config step and test file to reflect change in handling of verbose debugging output.

Modified:
   branches/tt1452_configure_debug/config/auto/isreg.pm

Modified: branches/tt1452_configure_debug/config/auto/isreg.pm
==============================================================================
--- branches/tt1452_configure_debug/config/auto/isreg.pm	Mon May 31 02:56:11 2010	(r47185)
+++ branches/tt1452_configure_debug/config/auto/isreg.pm	Mon May 31 03:22:34 2010	(r47186)
@@ -63,7 +63,8 @@
     my $test;
     $test = (! defined $anyerror) ? 1 : 0;
     $conf->data->set( isreg => $test );
-    print( $test ? " (Yep) " : " (no) " ) if $conf->options->get('verbose');
+    my $test_str = $test ? " (Yep) " : " (no) ";
+    $conf->debug($test_str);
     $self->set_result( $test ? 'yes' : 'no' );
     return 1;
 }


More information about the parrot-commits mailing list