This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Unicode-Normalize/Makefile.PL: avoid stderr
authorDavid Mitchell <davem@iabyn.com>
Tue, 1 Dec 2020 16:02:06 +0000 (16:02 +0000)
committerDavid Mitchell <davem@iabyn.com>
Tue, 1 Dec 2020 16:02:06 +0000 (16:02 +0000)
During build, output general progress information to stdout, not stderr.

dist/Unicode-Normalize/Makefile.PL

index 5c40ff1..a848b0d 100644 (file)
@@ -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: $!";