mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
pkg-config wrapper: output linker flags for static libraries
This commit is contained in:
parent
b6e58c6a7b
commit
23470315f3
1 changed files with 1 additions and 1 deletions
2
deps/pkg-config/bin/pkg-config
vendored
2
deps/pkg-config/bin/pkg-config
vendored
|
@ -38,7 +38,7 @@ def _main():
|
|||
environment = os.environ
|
||||
environment['PKG_CONFIG_PATH'] = config_path
|
||||
|
||||
args = [bin_path + 'pkg-config.exe', '--define-prefix'] + args
|
||||
args = [bin_path + 'pkg-config.exe', '--define-prefix', '--static'] + args
|
||||
result = subprocess.run(args, env=environment, capture_output=True)
|
||||
|
||||
stdout = result.stdout.decode('ascii')
|
||||
|
|
Loading…
Reference in a new issue