diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-17 19:18:21 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-26 20:09:06 -0700 |
commit | 1aecc70750ee6ce9c96ebf3e6b4a7fb322ff8ca3 (patch) | |
tree | 1e2c607ae9980b47917effe4203b4448a1dd4c5f /build-aux | |
parent | c7a0d6de46610ac9ceaea5afe1b7983550fc1be6 (diff) |
Build the full matrix of CMAKE_BUILD_TYPE
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/stack.c.gen | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/build-aux/stack.c.gen b/build-aux/stack.c.gen index dd7aff9..61d7bce 100755 --- a/build-aux/stack.c.gen +++ b/build-aux/stack.c.gen @@ -463,10 +463,8 @@ def main( return True if ( len(chain) >= sbc_9p_max_depth - and call.endswith("/srv.c:util_release") - and all( - c.endswith("/srv.c:util_release") for c in chain[-sbc_9p_max_depth:] - ) + and "/srv.c:util_release" in call + and all(("/srv.c:util_release" in c) for c in chain[-sbc_9p_max_depth:]) ): return True return False |