From 1aecc70750ee6ce9c96ebf3e6b4a7fb322ff8ca3 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Tue, 17 Dec 2024 19:18:21 -0700 Subject: Build the full matrix of CMAKE_BUILD_TYPE --- build-aux/stack.c.gen | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'build-aux') 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 -- cgit v1.2.3-2-g168b