diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-12-17 14:51:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-12-17 14:51:58 +0000 |
| commit | e7b5945f03b297bf909d2bd28f1533137cf8f409 (patch) | |
| tree | 3856c36a64b817c12d95bf30f4dd6b96a2642c74 /wscript | |
| parent | f0790b05d3aaff1e2a587db0dcb61d90274bd2c4 (diff) | |
Try to fix build with python 3.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -119,7 +119,7 @@ def configure(conf): # Find the icu- libraries on the system as we need to link to them when we look for boost locale. locale_libs = ['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix] for pkg in subprocess.check_output(['pkg-config', '--list-all']).splitlines(): - if pkg.startswith("icu"): + if pkg.startswith(b"icu"): for lib in subprocess.check_output(['pkg-config', '--libs-only-l', pkg.split()[0]]).split(): name = lib[2:] if not name in locale_libs: |
