We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21726f0 commit 277c1f1Copy full SHA for 277c1f1
lib/pkg_config.py
@@ -31,7 +31,7 @@ def _call(self, *pkg_config_args):
31
try:
32
cmd = [Configuration.current.pkg_config] + list(pkg_config_args) + [self.package_name]
33
print("Executing command '{}'".format(cmd), file=sys.stderr)
34
- return shlex.split(subprocess.check_output(cmd))
+ return shlex.split(subprocess.check_output(cmd).decode('utf-8'))
35
except subprocess.CalledProcessError as e:
36
raise self.Error("pkg-config exited with error code {}".format(e.returncode))
37
0 commit comments