Redirecting stderr in autobuild.

This commit is contained in:
Sergiotarxz 2024-11-11 12:07:57 +01:00
parent 7428bcddec
commit 6eb838904b

View File

@ -6,10 +6,13 @@ use warnings;
use File::Basename qw/dirname/;
{
BEGIN {
open my $fh, '>&', \*STDERR;
open STDERR, '>', '/dev/null';
system 'perl', 'Build.PL';
system 'perl', 'Build', 'build';
}
open STDERR, '>&', $fh;
};
use blib;