Created
June 26, 2014 22:23
-
-
Save nutjob4life/c38fb0cba8f3c714636c to your computer and use it in GitHub Desktop.
Patch to setup.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- setup.py.orig 2014-06-26 17:16:26.000000000 -0500 | |
+++ setup.py 2014-06-26 17:21:35.000000000 -0500 | |
@@ -333,9 +333,7 @@ | |
if platform in ('darwin', 'ipod'): | |
kwds["extra_link_args"] = \ | |
- lflags + ['-install_name', '@rpath/libjcc.dylib', | |
- '-current_version', jcc_ver, | |
- '-compatibility_version', jcc_ver] | |
+ lflags + [] | |
elif platform == 'linux2': | |
kwds["extra_link_args"] = \ | |
lflags + ['-lpython%s.%s' %(sys.version_info[0:2])] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment