Skip to content

Commit 997b31d

Browse files
committed
Fix call() calls
1 parent 6c5390b commit 997b31d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tools/wasm/wasi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def make_build_python(context, working_dir):
174174
@subdir(BUILD_DIR)
175175
def pythoninfo_build_python(context, working_dir):
176176
"""Display build info of the build Python."""
177-
call(["make", "pythoninfo"], context=context)
177+
call(["make", "pythoninfo"], quiet=context.quiet)
178178

179179

180180
def find_wasi_sdk():
@@ -334,7 +334,7 @@ def build_all(context):
334334
@subdir(lambda context: CROSS_BUILD_DIR / context.host_triple)
335335
def pythoninfo_wasi_python(context, working_dir):
336336
"""Display build info of the host/WASI Python."""
337-
call(["make", "pythoninfo"], context=context)
337+
call(["make", "pythoninfo"], quiet=context.quiet)
338338

339339

340340
def clean_contents(context):

0 commit comments

Comments
 (0)