Skip to content

Commit

Permalink
Hide stderr from --keep-system-libs
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed May 2, 2022
1 parent 9d988da commit 0c1720d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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", "")
Expand Down

0 comments on commit 0c1720d

Please sign in to comment.