From 432b9748d3ad4eb97408ba85b048009ce77cb0b3 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Mon, 18 May 2026 12:45:42 -0700 Subject: [PATCH] Use check_call when building system libraries with EMAR. NFC This means that `emar` shows up when doing e.g. ./embuilder --verbose. --- tools/system_libs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/system_libs.py b/tools/system_libs.py index 954aabbda1d44..57a9f0315a583 100644 --- a/tools/system_libs.py +++ b/tools/system_libs.py @@ -143,7 +143,7 @@ def create_lib_emar(output_filename, filenames): utils.delete_file(output_filename) cmd = [shared.EMAR, 'cr', output_filename] + filenames cmd = building.get_command_with_possible_response_file(cmd) - utils.run_process(cmd) + shared.check_call(cmd) def create_lib(libname, inputs):