diff options
author | Pieter-Jan Briers <pieterjan.briers@gmail.com> | 2018-03-18 10:51:35 +0100 |
---|---|---|
committer | Pieter-Jan Briers <pieterjan.briers@gmail.com> | 2018-03-18 10:51:35 +0100 |
commit | 998f1977a8b5bb7db3d2cfe68a42ce3d67619cb2 (patch) | |
tree | 81a91a6a0524aecb01d9c4ec9e5136f69e20956f /modules/mono/config.py | |
parent | 760b0567a668c927820101d057ea8b4218943438 (diff) | |
download | redot-engine-998f1977a8b5bb7db3d2cfe68a42ce3d67619cb2.tar.gz |
Fix Mono builds with Python 3.
A subprocess call wasn't specifying an encoding,
so this gave a TypeError in Python 3.
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r-- | modules/mono/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index 5591ed25bf..0e21987a0e 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -161,7 +161,7 @@ def configure(env): mono_lib_path = '' mono_so_name = '' - mono_prefix = subprocess.check_output(["pkg-config", "mono-2", "--variable=prefix"]).strip() + mono_prefix = subprocess.check_output(["pkg-config", "mono-2", "--variable=prefix"], encoding="utf8").strip() tmpenv = Environment() tmpenv.AppendENVPath('PKG_CONFIG_PATH', os.getenv('PKG_CONFIG_PATH')) |