Fix for issue 4472 is incompatible with Cygwin, this patch

should fix that.
This commit is contained in:
Ronald Oussoren 2009-01-02 15:06:00 +00:00
parent abcc168c69
commit 0bbebbbee3

View file

@ -773,8 +773,8 @@ altbininstall: $(BUILDPYTHON)
done done
$(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE) $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
if test -f $(LDLIBRARY); then \ if test -f $(LDLIBRARY); then \
if test "$(SO)" = .dll; then \ if test -n "$(DLLLIBRARY)" ; then \
$(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(BINDIR); \ $(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \
else \ else \
$(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \ $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
if test $(LDLIBRARY) != $(INSTSONAME); then \ if test $(LDLIBRARY) != $(INSTSONAME); then \