Merge branch 'ns/fix-make-docs' into next
Conflicts: Changelog.draft.rst
This commit is contained in:
commit
94459f9454
@ -20,6 +20,7 @@ Bug Fixes
|
|||||||
---------
|
---------
|
||||||
|
|
||||||
* Fix craches for getglobalui().
|
* Fix craches for getglobalui().
|
||||||
|
* Fix documentation build.
|
||||||
|
|
||||||
|
|
||||||
Pending for the next major release
|
Pending for the next major release
|
||||||
|
2
Makefile
2
Makefile
@ -18,7 +18,7 @@
|
|||||||
VERSION=4.0.16
|
VERSION=4.0.16
|
||||||
TARGZ=offlineimap_$(VERSION).tar.gz
|
TARGZ=offlineimap_$(VERSION).tar.gz
|
||||||
SHELL=/bin/bash
|
SHELL=/bin/bash
|
||||||
RST2HTML=`type rst2html 2>/dev/null && echo rst2html || echo rst2html.py`
|
RST2HTML=`type rst2html 2>/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 && echo rst2html || echo rst2html.py`
|
RST2HTML=`type rst2html 2>/dev/null 2>&1 && echo rst2html || echo rst2html.py`
|
||||||
RST2MAN=`type rst2man 2>/dev/null && echo rst2man || echo rst2man.py`
|
RST2MAN=`type rst2man 2>/dev/null 2>&1 && echo rst2man || echo rst2man.py`
|
||||||
|
|
||||||
all: html
|
all: html
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user