diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-25 13:48:17 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-25 13:48:17 (GMT) |
commit | 94f75e04a8a95a970e8f951af9edbb053bff8b44 (patch) | |
tree | 9c5b1905631381daa391ce65457fc1150832a9fc /Makefile.pre.in | |
parent | 5c9b02dffe1276d6383c1c088e7bcb0464df24e8 (diff) | |
download | cpython-94f75e04a8a95a970e8f951af9edbb053bff8b44.zip cpython-94f75e04a8a95a970e8f951af9edbb053bff8b44.tar.gz cpython-94f75e04a8a95a970e8f951af9edbb053bff8b44.tar.bz2 |
link to CoreFoundation in framework builds #6104
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 25eb727..02cb586 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -462,10 +462,11 @@ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \ -all_load $(LIBRARY) -Wl,-single_module \ -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ -compatibility_version $(VERSION) \ - -current_version $(VERSION); \ + -current_version $(VERSION) \ + -framework CoreFoundation; \ else \ /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \ - @LIBTOOL_CRUFT@ ;\ + @LIBTOOL_CRUFT@ -framework CoreFoundation;\ fi $(INSTALL) -d -m $(DIRMODE) \ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj |