commit: 03503fcd1fcfe05a212dbf40083f5593ee2d9b52
parent 8575d17bc1bc432682f1db5f16867adee1f75b6c
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sat, 2 Oct 2021 18:43:36 +0200
configure: Fix test case in is_ok
For some reason this only broke in NetBSD while it's entirely out of POSIX.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
@@ -20,7 +20,7 @@ DEPS="gtk+-3.0 libxml-2.0"
is_ok() {
status="$?"
- if test "$status" == 0; then
+ if test $status -eq 0; then
printf " OK\n"
else
printf " FAIL\n"