diff options
author | David Mitchell <davem@iabyn.com> | 2020-12-01 16:02:06 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2020-12-01 16:02:06 +0000 |
commit | 9084c33e0f9582b71e6748dd410ae1f290c74d99 (patch) | |
tree | c98064a4d6be4558e27ac3d9df577cf57a9727a6 /dist | |
parent | e768bd98d8ad542e1bb37a1e715ad85b4b127afc (diff) | |
download | perl-9084c33e0f9582b71e6748dd410ae1f290c74d99.tar.gz |
Unicode-Normalize/Makefile.PL: avoid stderr
During build, output general progress information to stdout, not stderr.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Unicode-Normalize/Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Unicode-Normalize/Makefile.PL b/dist/Unicode-Normalize/Makefile.PL index 5c40ff1700..a848b0d22c 100644 --- a/dist/Unicode-Normalize/Makefile.PL +++ b/dist/Unicode-Normalize/Makefile.PL @@ -8,7 +8,7 @@ my $clean = {}; my $mm_ver = ExtUtils::MakeMaker->VERSION; if (-f "Normalize.xs") { - print STDERR "Making header files for XS...\n"; + print "Making header files for XS...\n"; do './mkheader' or die $@ || "mkheader: $!"; |