diff options
author | Sadie Powell <sadie@witchery.services> | 2021-01-29 14:22:04 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-01-29 14:24:56 +0000 |
commit | 0e5081e87c1609d3c4a9855775ee562ceab485f6 (patch) | |
tree | ba95c8c1f3edbcec456cba083a03644643245c91 /make | |
parent | 413a08a4d3d3381dbcc215eb81fe4713cb646602 (diff) |
Fix some minor oversights introduced in 859a799 and 3e557e8.
Diffstat (limited to 'make')
-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; } |