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.
This commit is contained in:
Ned Deily 2013-07-08 14:33:03 -07:00
parent 15a0bd3965
commit 78094ac53e

View file

@ -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 \