From: Ondřej Surý Date: Tue, 18 Dec 2018 12:20:10 +0000 (+0100) Subject: Properly detect msys/msys2 environment in the stop.pl script. X-Git-Tag: v9.13.6~94^2 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=808dac07601dcd8a3c17a28a445fe54caf4385ba;p=thirdparty%2Fbind9.git Properly detect msys/msys2 environment in the stop.pl script. --- diff --git a/bin/tests/system/stop.pl b/bin/tests/system/stop.pl index a7ece3dc380..cf84d4e1a25 100644 --- a/bin/tests/system/stop.pl +++ b/bin/tests/system/stop.pl @@ -188,7 +188,7 @@ sub send_signal { my $result = 0; - if ($^O eq 'cygwin') { + if ($^O eq 'cygwin' || $^O eq 'msys') { my $killout = `/bin/kill -f -$signal $pid 2>&1`; chomp($killout); $result = 1 if ($killout eq '');