Skip to content

Commit 9c7b2af

Browse files
authored
pythongh-136852: Emscripten: Fix bug in python#136853 (python#136909)
We need to get rid of some whitespace to make this work.
1 parent cf19b64 commit 9c7b2af

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)