gitweb: Convert project name to UTF-8
[gitweb.git] / perl / Makefile.PL
index de73235e4c3142381c4ea01597e18b14cd65bc02..9b117fd0d736615a8c4aeda742384956373d295a 100644 (file)
@@ -20,9 +20,14 @@ if ($@) {
 my %extra;
 $extra{DESTDIR} = $ENV{DESTDIR} if $ENV{DESTDIR};
 
+# redirect stdout, otherwise the message "Writing perl.mak for Git"
+# disrupts the output for the target 'instlibdir'
+open STDOUT, ">&STDERR";
+
 WriteMakefile(
        NAME            => 'Git',
        VERSION_FROM    => 'Git.pm',
        PM              => \%pm,
+       MAKEFILE        => 'perl.mak',
        %extra
 );