Skip to content

Commit

Permalink
RT#133762 Explicitly print to STDOUT in EUMM.pm
Browse files Browse the repository at this point in the history
  • Loading branch information
bingos committed Nov 18, 2020
1 parent 7b7ea54 commit 31c0252
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/ExtUtils/MakeMaker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ sub _parse_line {
}

sub check_manifest {
print "Checking if your kit is complete...\n";
print STDOUT "Checking if your kit is complete...\n";
require ExtUtils::Manifest;
# avoid warning
$ExtUtils::Manifest::Quiet = $ExtUtils::Manifest::Quiet = 1;
Expand Down Expand Up @@ -1230,15 +1230,15 @@ sub flush {
my $self = shift;

my $finalname = $self->{MAKEFILE};
printf "Generating a %s %s\n", $self->make_type, $finalname if $Verbose || !$self->{PARENT};
print "Writing $finalname for $self->{NAME}\n" if $Verbose || !$self->{PARENT};
printf STDOUT "Generating a %s %s\n", $self->make_type, $finalname if $Verbose || !$self->{PARENT};
print STDOUT "Writing $finalname for $self->{NAME}\n" if $Verbose || !$self->{PARENT};

unlink($finalname, "MakeMaker.tmp", $Is_VMS ? 'Descrip.MMS' : ());

write_file_via_tmp($finalname, $self->{RESULT});

# Write MYMETA.yml to communicate metadata up to the CPAN clients
print "Writing MYMETA.yml and MYMETA.json\n"
print STDOUT "Writing MYMETA.yml and MYMETA.json\n"
if !$self->{NO_MYMETA} and $self->write_mymeta( $self->mymeta );

# save memory
Expand Down

0 comments on commit 31c0252

Please sign in to comment.