Merge branch 'ns/fix-documentation-build' into next
This commit is contained in:
commit
b1a570d393
@ -33,6 +33,8 @@ Changes
|
|||||||
Bug Fixes
|
Bug Fixes
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
* Fix ignoring output while determining the rst2xxx command name to build
|
||||||
|
documentation.
|
||||||
* Fix hang because of infinite loop reading EOF.
|
* Fix hang because of infinite loop reading EOF.
|
||||||
* Allow SSL connections to send keep-alive messages.
|
* Allow SSL connections to send keep-alive messages.
|
||||||
* Fix regression (UIBase is no more).
|
* Fix regression (UIBase is no more).
|
||||||
|
2
Makefile
2
Makefile
@ -18,7 +18,7 @@
|
|||||||
VERSION=`./offlineimap.py --version`
|
VERSION=`./offlineimap.py --version`
|
||||||
TARGZ=offlineimap_$(VERSION).tar.gz
|
TARGZ=offlineimap_$(VERSION).tar.gz
|
||||||
SHELL=/bin/bash
|
SHELL=/bin/bash
|
||||||
RST2HTML=`type rst2html 2>/dev/null 2>&1 && echo rst2html || echo rst2html.py`
|
RST2HTML=`type rst2html >/dev/null 2>&1 && echo rst2html || echo rst2html.py`
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ SOURCES = $(wildcard *.rst)
|
|||||||
HTML_TARGETS = $(patsubst %.rst,%.html,$(SOURCES))
|
HTML_TARGETS = $(patsubst %.rst,%.html,$(SOURCES))
|
||||||
|
|
||||||
RM = rm
|
RM = rm
|
||||||
RST2HTML=`type rst2html 2>/dev/null 2>&1 && echo rst2html || echo rst2html.py`
|
RST2HTML=`type rst2html >/dev/null 2>&1 && echo rst2html || echo rst2html.py`
|
||||||
RST2MAN=`type rst2man 2>/dev/null 2>&1 && echo rst2man || echo rst2man.py`
|
RST2MAN=`type rst2man >/dev/null 2>&1 && echo rst2man || echo rst2man.py`
|
||||||
|
|
||||||
all: html
|
all: html
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user