From 9c7b2af73dee2b99793637c3b70f724641b84349 Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Mon, 21 Jul 2025 11:17:36 +0200 Subject: [PATCH] gh-136852: Emscripten: Fix bug in #136853 (#136909) 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 24b989f75f7b..b855e80cda70 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, -- 2.47.3