Kaydet (Commit) 0bbebbbe authored tarafından Ronald Oussoren's avatar Ronald Oussoren

Fix for issue 4472 is incompatible with Cygwin, this patch

should fix that.
üst abcc168c
...@@ -773,8 +773,8 @@ altbininstall: $(BUILDPYTHON) ...@@ -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 \
......
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