From f2fa869597aaef34d4d490f1baf029f79e499675 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Sun, 13 Jan 2019 21:01:43 -0800 Subject: [PATCH] build: (fixes #17) Fix string type consistency issue --- src/config-store/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config-store/wscript b/src/config-store/wscript index eedc2b687..42521ae1c 100644 --- a/src/config-store/wscript +++ b/src/config-store/wscript @@ -87,8 +87,8 @@ def build(bld): find_sdk_path = '/usr/bin/xcrun --show-sdk-path'.split() try: p = subprocess.Popen(find_sdk_path, stdout=subprocess.PIPE) - xcrun_output = p.stdout.read().strip() - module.includes = xcrun_output + '/usr/include/libxml2' + xcrun_output = p.stdout.read().strip().decode("utf-8") + module.includes = str(xcrun_output + u'/usr/include/libxml2') except OSError: pass