diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-03-13 14:36:28 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-03-13 14:36:28 (GMT) |
commit | 34e000c485eea3194ac31a83f1f1c52aaf09c82d (patch) | |
tree | 116e7dd5dd7e050164f22cf1fb5cefa1f2a2aa2b /ext | |
parent | 94e8397004ef0d9c54ee5156466a3c5d9a975d12 (diff) | |
download | pykolab-34e000c485eea3194ac31a83f1f1c52aaf09c82d.tar.gz |
Link against the dynamic library instead of the static library
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/python/Tools/freeze/freeze.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/python/Tools/freeze/freeze.py b/ext/python/Tools/freeze/freeze.py index ceab329..50b28da 100755 --- a/ext/python/Tools/freeze/freeze.py +++ b/ext/python/Tools/freeze/freeze.py @@ -462,7 +462,7 @@ def main(): cflags = ['$(OPT)'] cppflags = defines + includes - libs = [os.path.join(binlib, 'libpython$(VERSION).a')] + libs = [os.path.join(binlib, 'libpython$(VERSION).so')] somevars = {} if os.path.exists(makefile_in): |