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

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Mon May 31 14:01:04 UTC 2010


Author: jkeenan
Date: Mon May 31 14:01:04 2010
New Revision: 47225
URL: https://trac.parrot.org/parrot/changeset/47225

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

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

Modified: branches/tt1452_configure_debug/config/auto/memalign.pm
==============================================================================
--- branches/tt1452_configure_debug/config/auto/memalign.pm	Mon May 31 13:58:11 2010	(r47224)
+++ branches/tt1452_configure_debug/config/auto/memalign.pm	Mon May 31 14:01:04 2010	(r47225)
@@ -95,7 +95,8 @@
         : $test  ? 'memalign'
         :          '';
     $conf->data->set( memalign => $f );
-    print( $test ? " (Yep:$f) " : " (no) " ) if $conf->options->get('verbose');
+    my $test_str = $test ? " (Yep:$f) " : " (no) ";
+    $conf->debug($test_str);
     $self->set_result( $test ? 'yes' : 'no' );
 }
 


More information about the parrot-commits mailing list