From 6bf55c51b2168e2a9020f6fe356d2317e1c3b52f Mon Sep 17 00:00:00 2001 From: Ivo Jimenez Date: Thu, 22 Feb 2024 02:06:30 -0500 Subject: [PATCH] tools/cmake: update folder name of 3rdparty deps The `v_` prefixed was dropped Signed-off-by: Ivo Jimenez (cherry picked from commit 166afb6dd02f1b2d7d8dada2531c3166837eccd4) --- tools/cmake_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cmake_test.py b/tools/cmake_test.py index ce848546dd6c1..212c12a09b0ef 100755 --- a/tools/cmake_test.py +++ b/tools/cmake_test.py @@ -133,7 +133,7 @@ def _find_addr2lines(self): # Workstation: find our build directory by searching back from binary path_parts = self.binary.split("/") try: - vbuild = "/".join(path_parts[0:path_parts.index("vbuild") + 3]) + vbuild = "/".join(path_parts[0:path_parts.index("vbuild") + 5]) except (ValueError, IndexError): sys.stderr.write( f"Could not find vbuild in binary path {self.binary}\n") @@ -141,7 +141,7 @@ def _find_addr2lines(self): else: location = os.path.join( vbuild, - "v_deps_build/seastar-prefix/src/seastar/scripts/seastar-addr2line" + "deps_build/seastar-prefix/src/seastar/scripts/seastar-addr2line" ) if not os.path.exists(location):