From: Denis Ovsienko Date: Thu, 14 Mar 2024 00:15:13 +0000 (+0000) Subject: Fix a shellcheck warning in the previous commit. X-Git-Tag: tcpslice-1.8~22 X-Git-Url: https://git.tcpdump.org/tcpslice/commitdiff_plain/281dcfffde38892f6bfc7a4300471496b23b7841 Fix a shellcheck warning in the previous commit. --- diff --git a/build.sh b/build.sh index fed2c8b..91bd4c3 100755 --- a/build.sh +++ b/build.sh @@ -31,7 +31,7 @@ run_after_echo "$MAKE_BIN" -s clean case `cc_id`/`os_id` in clang-*/SunOS-5.11) # Work around https://www.illumos.org/issues/16369 - [ `uname -o` = illumos ] && grep -Fq OpenIndiana /etc/release && CFLAGS="-Wno-fuse-ld-path${CFLAGS:+ $CFLAGS}" + [ "`uname -o`" = illumos ] && grep -Fq OpenIndiana /etc/release && CFLAGS="-Wno-fuse-ld-path${CFLAGS:+ $CFLAGS}" ;; esac