Hide stderr from --keep-system-libs

This commit is contained in:
Andrew Murray 2022-05-03 09:19:09 +10:00
parent 9d988dab6a
commit 0c1720d358

View File

@ -255,14 +255,16 @@ def _pkg_config(name):
try:
command_libs = [command, "--libs-only-L", name]
command_cflags = [command, "--cflags-only-I", name]
stderr = None
if keep_system:
command_libs.append("--keep-system-libs")
command_cflags.append("--keep-system-cflags")
stderr = subprocess.DEVNULL
if not DEBUG:
command_libs.append("--silence-errors")
command_cflags.append("--silence-errors")
libs = (
subprocess.check_output(command_libs)
subprocess.check_output(command_libs, stderr=stderr)
.decode("utf8")
.strip()
.replace("-L", "")