Skip to content

Commit ad8e824

Browse files
committed
gh-136852: Emscripten: Fix bug in #136853
We need to get rid of some whitespace to make this work.
1 parent 5798348 commit ad8e824

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
@@ -216,7 +216,7 @@ def configure_emscripten_python(context, working_dir):
216216
text=True,
217217
capture_output=True,
218218
)
219-
host_runner = res.stdout
219+
host_runner = res.stdout.strip()
220220
pkg_config_path_dir = (PREFIX_DIR / "lib/pkgconfig/").resolve()
221221
env_additions = {
222222
"CONFIG_SITE": config_site,

0 commit comments

Comments
 (0)