From c1667dfa0a0bae75eef02b0bd688512488da61ae Mon Sep 17 00:00:00 2001 From: Dengke Tang Date: Mon, 19 Feb 2024 15:19:14 -0800 Subject: [PATCH] format --- builder/actions/cmake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/actions/cmake.py b/builder/actions/cmake.py index 21a11952b..cfc86b30f 100644 --- a/builder/actions/cmake.py +++ b/builder/actions/cmake.py @@ -185,7 +185,7 @@ def _build_project(env, project, cmake_extra, build_tests=False, args_transforme # When cross compiling, we must inject the build_env into the cross compile container if toolchain.cross_compile: build_env = build_env + ['{}={}\n'.format(key, val) - for key, val in config.get('build_env', {}).items()] + for key, val in config.get('build_env', {}).items()] with open(toolchain.env_file, 'a') as f: f.writelines(build_env) # set parallism via env var (cmake's --parallel CLI option doesn't exist until 3.12)