mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Fix for issue 4472 is incompatible with Cygwin, this patch
should fix that.
This commit is contained in:
parent
abcc168c69
commit
0bbebbbee3
1 changed files with 2 additions and 2 deletions
|
@ -773,8 +773,8 @@ altbininstall: $(BUILDPYTHON)
|
|||
done
|
||||
$(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
|
||||
if test -f $(LDLIBRARY); then \
|
||||
if test "$(SO)" = .dll; then \
|
||||
$(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(BINDIR); \
|
||||
if test -n "$(DLLLIBRARY)" ; then \
|
||||
$(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \
|
||||
else \
|
||||
$(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
|
||||
if test $(LDLIBRARY) != $(INSTSONAME); then \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue