shellcheck is confused about $MAKEFLAGS's scoping when it scans the entire SPDK repo. It thinks that _build_release() may potentially change it, and since it's defined as a subshell function, this change may be not visible in a global scope. This is true in theory, but in practice thi...