We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74394d commit 941165fCopy full SHA for 941165f
build_sdl.py
@@ -302,7 +302,7 @@ def get_emscripten_include_dir() -> Path:
302
print(f"""EMCC CFLAGS: {emcc_stdout}""")
303
matches = re.findall(r"--sysroot=(\S+)", emcc_stdout)
304
print(f"{matches=}")
305
- subprocess.run(("find", matches[0]), check=False)
+ matches = [str(Path(matches[0], "include"))]
306
out = ""
307
else:
308
cmake_out = subprocess.run(
0 commit comments