summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure2
-rw-r--r--make/configure.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 2e19228ba..5a587b808 100755
--- a/configure
+++ b/configure
@@ -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}
diff --git a/make/configure.pm b/make/configure.pm
index fd7d15690..f096fcd90 100644
--- a/make/configure.pm
+++ b/make/configure.pm
@@ -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;
}