Fix some minor oversights introduced in 859a799 and 3e557e8.

This commit is contained in:
Sadie Powell 2021-01-29 14:22:04 +00:00
parent 413a08a4d3
commit 0e5081e87c
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -453,7 +453,7 @@ my @makeargs;
push @makeargs, "-C${\abs2rel $RealDir}" unless getcwd eq $RealDir;
push @makeargs, "-j${\(get_cpu_count() + 1)}";
say console_format <<"EOM";
print console_format <<"EOM";
<|GREEN Paths:|>
<|GREEN Base:|> $config{BASE_DIR}

View File

@ -205,7 +205,7 @@ sub run_test($$;$) {
my ($what, $result, $adjective) = @_;
$adjective //= 'available';
print console_format "Checking whether <|GREEN $what|> is $adjective ... ";
say console_format $result ? "<|GREEN yes|>" : "<|RED no|>";
say console_format($result ? "<|GREEN yes|>" : "<|RED no|>");
return $result;
}