mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
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:
parent
15a0bd3965
commit
78094ac53e
1 changed files with 1 additions and 1 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue