From 78094ac53eff9bb9a2efadd1b03d8175d773afcd Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Mon, 8 Jul 2013 14:33:03 -0700 Subject: Avoid spurious non-fatal install errors for OS X frameworks: for a framework install, the python shared library is installed in the frameworkinstallstructure target, not in altbininstall. --- Makefile.pre.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index abfc64e..00e589f 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -945,7 +945,7 @@ altbininstall: $(BUILDPYTHON) fi; \ (cd $(DESTDIR)$(BINDIR); $(LN) python$(LDVERSION)$(EXE) python$(VERSION)$(EXE)); \ fi - if test -f $(LDLIBRARY); then \ + if test -f $(LDLIBRARY) && test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \ if test -n "$(DLLLIBRARY)" ; then \ $(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \ else \ -- cgit v0.12