diff options
| author | Ned Deily <nad@acm.org> | 2012-07-24 03:31:48 -0700 |
|---|---|---|
| committer | Ned Deily <nad@acm.org> | 2012-07-24 03:31:48 -0700 |
| commit | ecd4e9de5afab6a5d75a6fa7ebfb62804ba69264 (patch) | |
| tree | ac83e16c4246fc0467cbd0c3671b2b76f3f41814 /Makefile.pre.in | |
| parent | 55624da8a81887e8d03f6cd496cbf92f3a6011a5 (diff) | |
| download | cpython-git-ecd4e9de5afab6a5d75a6fa7ebfb62804ba69264.tar.gz | |
Issue #14197: For OS X framework builds, ensure links to the shared
library are created with the proper ABI suffix.
Diffstat (limited to 'Makefile.pre.in')
| -rw-r--r-- | Makefile.pre.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 9cc15c963e..e5c2a3f301 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1158,8 +1158,11 @@ frameworkinstallstructure: $(LDLIBRARY) # Install a number of symlinks to keep software that expects a normal unix # install (which includes python-config) happy. frameworkinstallmaclib: + ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(LDVERSION).a" + ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(LDVERSION).dylib" ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(VERSION).a" ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(VERSION).dylib" + ln -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(LDVERSION).dylib" ln -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(VERSION).dylib" # This installs the IDE, the Launcher and other apps into /Applications |
