diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-01-27 15:26:05 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-01-27 15:26:05 +0000 |
commit | 2d50ad6c00bc90badede5e714387a37ff16526ab (patch) | |
tree | f2edb4a61b8a00c69fe298e8804a8884dd905715 | |
parent | 9d4929144d3bc22c0fc73cd0edeaed8eb7b1ba30 (diff) | |
download | perl-2d50ad6c00bc90badede5e714387a37ff16526ab.tar.gz |
Revert change 24461, now that change 26757 allows TEST
to accept extra output from module tests
p4raw-id: //depot/perl@26959
-rw-r--r-- | cygwin/perlld.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cygwin/perlld.in b/cygwin/perlld.in index 871f108cc4..557d7d1eb4 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"; |