Author: jkeenan Date: Mon Dec 31 18:12:06 2007 New Revision: 24382 Modified: trunk/config/auto/cpu/sun4/auto.pm trunk/config/init/hints/solaris.pm
Log: Changing Step -> Utils in two previously undetected instances. Modified: trunk/config/auto/cpu/sun4/auto.pm ============================================================================== --- trunk/config/auto/cpu/sun4/auto.pm (original) +++ trunk/config/auto/cpu/sun4/auto.pm Mon Dec 31 18:12:06 2007 @@ -26,7 +26,7 @@ $conf->data->get(qw(cc ccflags ld_out o link linkflags cc_exe_out exe libs)); $successp = - Parrot::Configure::Step::_run_command( "$cc -c $ccflags -I./include -o sparcasm$o $file", + Parrot::Configure::Utils::_run_command( "$cc -c $ccflags -I./include -o sparcasm$o $file", 'test.cco', 'test.cco', $conf->options->get('verbose') ); return $successp; Modified: trunk/config/init/hints/solaris.pm ============================================================================== --- trunk/config/init/hints/solaris.pm (original) +++ trunk/config/init/hints/solaris.pm Mon Dec 31 18:12:06 2007 @@ -34,7 +34,7 @@ # Can't call cc_build since we haven't set all the flags yet. # This should suffice for this test. my $cc_inc = $conf->data->get('cc_inc'); - Parrot::Configure::Step::_run_command( "$cc -o test test.c $cc_inc", + Parrot::Configure::Utils::_run_command( "$cc -o test test.c $cc_inc", 'test.cco', 'test.cco' ) and confess "C compiler failed (see test.cco)"; %gnuc = eval $conf->cc_run() or die "Can't run the test program: $!";