diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-12-24 14:17:19 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-12-24 14:17:19 (GMT) |
commit | b5afe548d4d23d6cff7ab2be259e41cd6017d3c5 (patch) | |
tree | b6624a45b794085e519eb1bb49a9642c9c9096cc /Makefile.pre.in | |
parent | 92919a66d2bd4641a83edff4356805280d77a068 (diff) | |
download | cpython-b5afe548d4d23d6cff7ab2be259e41cd6017d3c5.zip cpython-b5afe548d4d23d6cff7ab2be259e41cd6017d3c5.tar.gz cpython-b5afe548d4d23d6cff7ab2be259e41cd6017d3c5.tar.bz2 |
Fix for issue #7541: python-config --ldflags doesn't pick up libpython2.5.a
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index f367a9b..c10399b 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1072,6 +1072,7 @@ frameworkinstallstructure: $(LDLIBRARY) # install (which includes python-config) happy. frameworkinstallmaclib: ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a" + ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).dylib" ln -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(VERSION).dylib" cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)" |