]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix some minor oversights introduced in 859a799 and 3e557e8.
authorSadie Powell <sadie@witchery.services>
Fri, 29 Jan 2021 14:22:04 +0000 (14:22 +0000)
committerSadie Powell <sadie@witchery.services>
Fri, 29 Jan 2021 14:24:56 +0000 (14:24 +0000)
configure
make/configure.pm

index 2e19228ba13ab216c8dd58c6d60890777f406b24..5a587b808c50c19eab8b5a7c904d539ae1ed78ca 100755 (executable)
--- 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}
index fd7d156900baf3a1c56362eb9eb0930d4cf64dc1..f096fcd900f64eb9418114661876021c422378ec 100644 (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;
 }