to accept extra output from module tests
p4raw-id: //depot/perl@26959
#---------------------------------------------------------------------------
sub shellexec {
my $command = shift;
- print STDERR $command;
+ print $command;
print DEBUGFILE $command if $DEBUG;
system($command) == 0
or die "perlld: *** system() failed to execute\n$command\n";