commit fe8b858f7535ce080783d80756e10ec71c847c3d Author: Daniel Swanson Date: Tue Jul 27 12:50:04 2021 -0500 remove unneeded args diff --git a/python/setup.py.in b/python/setup.py.in index d6d7658..2303a7a 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -8,7 +8,7 @@ from distutils.core import Extension, setup import shlex compile_args = '@CXXFLAGS@'.split() + shlex.split('@DEFS@') + '@LIBXML_CFLAGS@'.split() -link_args = ['-lxml2'] +link_args = [] if platform == 'darwin': compile_args += ['-stdlib=libc++', '-mmacosx-version-min=10.7'] link_args.append('-mmacosx-version-min=10.7')