diff options
Diffstat (limited to 'make/configure.pm')
-rw-r--r-- | make/configure.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |