Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update configure.py
Co-authored-by: Mestery <mestery@pm.me>
  • Loading branch information
Trott and Mesteery authored Jan 1, 2022
commit 277dc43511caf1ee87b75a8e7c0659d252e812ad
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ def pkg_config(pkg):
except OSError as e:
if e.errno != errno.ENOENT: raise e # Unexpected error.
return (None, None, None, None) # No pkg-config/pkgconf installed.
retval += [val]
retval.append(val)
args = ['--silence-errors']
return tuple(retval)

Expand Down