Skip to content

Commit f3e2110

Browse files
committed
fix path
1 parent 742ba83 commit f3e2110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/qualcomm/scripts/download_qnn_sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def _extract_tar(archive_path: pathlib.Path, prefix: str, target_dir: pathlib.Pa
256256

257257
def _check_tmp_glibc() -> bool:
258258
"""Check if glibc in /tmp was installed correctly and log its version."""
259-
libc_path = pathlib.Path(f"/tmp/glibc-{GLIBC_VERSION}/lib/libc.so.6")
259+
libc_path = GLIBC_ROOT / "lib" / "libc.so.6"
260260
if not libc_path.exists():
261261
logger.error("[glibc] Expected glibc at %s but file not found", libc_path)
262262
return False

0 commit comments

Comments
 (0)