Kaydet (Commit) 78094ac5 authored tarafından Ned Deily's avatar Ned Deily

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.
üst 15a0bd39
......@@ -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 \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment