If an exception is raised, try again without system paths

This commit is contained in:
Andrew Murray 2022-04-23 21:58:30 +10:00 committed by James Hilliard
parent 9ea4624704
commit 6ec9dfb9c0

View File

@ -250,10 +250,14 @@ def _cmd_exists(cmd):
def _pkg_config(name):
try:
command = os.environ.get("PKG_CONFIG", "pkg-config")
command_libs = [command, "--libs-only-L", "--keep-system-libs", name]
command_cflags = [command, "--cflags-only-I", "--keep-system-cflags", name]
for keep_system in (True, False):
try:
command_libs = [command, "--libs-only-L", name]
command_cflags = [command, "--cflags-only-I", name]
if keep_system:
command_libs.append("--keep-system-libs")
command_cflags.append("--keep-system-cflags")
if not DEBUG:
command_libs.append("--silence-errors")
command_cflags.append("--silence-errors")