Author: jkeenan
Date: Tue Oct  2 05:03:36 2007
New Revision: 21744

Modified:
   trunk/lib/Parrot/Configure.pm

Log:
Since step name is expressed with a double-colon delimiter rather than a 
forward slash, match in _run_this_step() should have simply been on '^inter'.

Modified: trunk/lib/Parrot/Configure.pm
==============================================================================
--- trunk/lib/Parrot/Configure.pm       (original)
+++ trunk/lib/Parrot/Configure.pm       Tue Oct  2 05:03:36 2007
@@ -324,7 +324,7 @@
 
     print "..." if $args->{verbose} && $args->{verbose} == 2;
     print "." x ( 71 - length($description) - length($result) );
-    print "$result." unless $step =~ m{^inter/} && $args->{ask};
+    print "$result." unless $step =~ m{^inter} && $args->{ask};
 
     # reset verbose value for the next step
     $conf->options->set( verbose => $args->{verbose} );

Reply via email to