From: Rafael Garcia-Suarez Date: Fri, 27 Jan 2006 15:26:05 +0000 (+0000) Subject: Revert change 24461, now that change 26757 allows TEST X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fce9dd68bde848d8e3cace4ead96a2070769c394;p=p5sagit%2Fp5-mst-13.2.git Revert change 24461, now that change 26757 allows TEST to accept extra output from module tests p4raw-id: //depot/perl@26959 --- diff --git a/cygwin/perlld.in b/cygwin/perlld.in index 871f108..557d7d1 100644 --- a/cygwin/perlld.in +++ b/cygwin/perlld.in @@ -79,7 +79,7 @@ close DEBUGFILE if $DEBUG; #--------------------------------------------------------------------------- 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";