commit 836c97ab26fc7ed39960839840d32b36df1aa78b Author: Daniel Swanson Date: Tue Jul 27 13:22:46 2021 -0500 link to ICU so that it actually runs diff --git a/python/setup.py.in b/python/setup.py.in index 2303a7a..b2f64e7 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -7,8 +7,8 @@ from sys import platform from distutils.core import Extension, setup import shlex -compile_args = '@CXXFLAGS@'.split() + shlex.split('@DEFS@') + '@LIBXML_CFLAGS@'.split() -link_args = [] +compile_args = '@CXXFLAGS@'.split() + shlex.split('@DEFS@') + '@LIBXML_CFLAGS@'.split() + '@ICU_CFLAGS@'.split() +link_args = '@LIBS@'.split() + '@ICU_LIBS@'.split() if platform == 'darwin': compile_args += ['-stdlib=libc++', '-mmacosx-version-min=10.7'] link_args.append('-mmacosx-version-min=10.7')