From f0b23e87f28e3cd346991d18b81c3893f0e64ba9 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 28 Dec 2020 10:54:40 +0200 Subject: [PATCH] build script: use adjusted environment for target installation --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index b40af0f5..1db69575 100755 --- a/build.py +++ b/build.py @@ -143,7 +143,7 @@ class Target(BaseTarget): args += options and options.to_list() or [] work_path = builder.build_path + self.src_root - subprocess.check_call(args, cwd=work_path) + subprocess.check_call(args, cwd=work_path, env=self.environment) self.update_pc_files()