Skip to content

Commit

Permalink
tools/cmake: update folder name of 3rdparty deps
Browse files Browse the repository at this point in the history
The `v_` prefixed was dropped

Signed-off-by: Ivo Jimenez <[email protected]>
(cherry picked from commit 166afb6)
  • Loading branch information
ivotron committed Jun 19, 2024
1 parent 3530a46 commit 6bf55c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/cmake_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,15 @@ 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")
return
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):
Expand Down

0 comments on commit 6bf55c5

Please sign in to comment.