From ad8e8246c759294c69cf00e68c5888ed333ba09f Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Mon, 21 Jul 2025 10:44:42 +0200 Subject: [PATCH] gh-136852: Emscripten: Fix bug in #136853 We need to get rid of some whitespace to make this work. --- Tools/wasm/emscripten/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/wasm/emscripten/__main__.py b/Tools/wasm/emscripten/__main__.py index 24b989f75f7b2b..b855e80cda703c 100644 --- a/Tools/wasm/emscripten/__main__.py +++ b/Tools/wasm/emscripten/__main__.py @@ -216,7 +216,7 @@ def configure_emscripten_python(context, working_dir): text=True, capture_output=True, ) - host_runner = res.stdout + host_runner = res.stdout.strip() pkg_config_path_dir = (PREFIX_DIR / "lib/pkgconfig/").resolve() env_additions = { "CONFIG_SITE": config_site,