diff options
author | PJB3005 <pieterjan.briers@gmail.com> | 2018-03-19 16:35:25 +0100 |
---|---|---|
committer | PJB3005 <pieterjan.briers@gmail.com> | 2018-03-19 16:36:03 +0100 |
commit | 6a7f552c6fb9f66ea9194a5717138d0f9fce9b9e (patch) | |
tree | 3afcd84767575766b68944f261abb44fb67e7724 /modules/mono | |
parent | ebce36c22f1aa27e3ef449565bf1e35c19a3e830 (diff) |
Fix mono build properly!
Fixes the mistake I made in #17603 to make it require Python > 3.6.
Diffstat (limited to 'modules/mono')
-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 0e21987a0e..831d849ea6 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"], encoding="utf8").strip() + mono_prefix = subprocess.check_output(["pkg-config", "mono-2", "--variable=prefix"]).decode("utf8").strip() tmpenv = Environment() tmpenv.AppendENVPath('PKG_CONFIG_PATH', os.getenv('PKG_CONFIG_PATH')) |