Skip to content

Commit 26f99dc

Browse files
committed
Ensure cross-build path is interpreted absolute.
1 parent 8c93331 commit 26f99dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/wasm/emscripten/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def get_build_paths(cross_build_dir=None):
3232
"""Compute all build paths from the given cross-build directory."""
3333
if cross_build_dir is None:
3434
cross_build_dir = DEFAULT_CROSS_BUILD_DIR
35-
cross_build_dir = Path(cross_build_dir)
35+
cross_build_dir = Path(cross_build_dir).absolute()
3636
host_triple_dir = cross_build_dir / HOST_TRIPLE
3737
return {
3838
"cross_build_dir": cross_build_dir,

0 commit comments

Comments
 (0)