From: Hood Chatham Date: Mon, 21 Jul 2025 09:17:36 +0000 (+0200) Subject: gh-136852: Emscripten: Fix bug in #136853 (#136909) X-Git-Tag: v3.15.0a1~907 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c7b2af73dee2b99793637c3b70f724641b84349;p=thirdparty%2FPython%2Fcpython.git gh-136852: Emscripten: Fix bug in #136853 (#136909) We need to get rid of some whitespace to make this work. --- 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,