diff --git a/Makefile.pre.in b/Makefile.pre.in index a35811c0576..2c19e15ceaf 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1068,6 +1068,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" # This installs the IDE, the Launcher and other apps into /Applications diff --git a/Misc/NEWS b/Misc/NEWS index 78dd84b2268..6bcae0afbb2 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -278,6 +278,9 @@ Build - Issue #6801 : symmetric_difference_update also accepts |. Thanks to Carl Chenet. +- Issue #7541: when using ``python-config`` with a framework install the compiler might + use the wrong library. + Documentation -------------