mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
aedi: verbose output for dependencies testing
print build command lines when testing dependencies and verbose output is enabled
This commit is contained in:
parent
8be2160008
commit
6854a1a40c
1 changed files with 4 additions and 0 deletions
|
@ -106,5 +106,9 @@ class TestDepsTarget(BuildTarget):
|
|||
entry,
|
||||
]
|
||||
args += shlex.split(pkg_config_output)
|
||||
|
||||
if state.verbose:
|
||||
print(' '.join(str(arg) for arg in args))
|
||||
|
||||
subprocess.run(args, check=True, cwd=state.build_path, env=state.environment)
|
||||
subprocess.run((exe_name,), check=True, env=state.environment)
|
||||
|
|
Loading…
Reference in a new issue