File tree 1 file changed +9
-3
lines changed 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,17 @@ help:
24
24
@echo " changes to make an overview over all changed/added/deprecated items"
25
25
@echo " linkcheck to check all external links for integrity"
26
26
27
-
28
- build :
27
+ build-dirs :
29
28
mkdir -p build/$(BUILDER ) build/doctrees
29
+
30
+ build : build-dirs
30
31
sphinx-build $(ALLSPHINXOPTS )
31
32
@echo
32
33
34
+ build-ignore-errors : build-dirs
35
+ -sphinx-build $(ALLSPHINXOPTS )
36
+ @echo
37
+
33
38
34
39
html : BUILDER = html
35
40
html : build
@@ -59,7 +64,8 @@ linkcheck: build
59
64
@echo " Link check complete; look for any errors in the above output " \
60
65
" or in build/$( BUILDER) /output.txt"
61
66
62
- linkfix : linkcheck
67
+ linkfix : BUILDER = linkcheck
68
+ linkfix : build-ignore-errors
63
69
$(PYTHON ) utils/linkfix.py
64
70
@echo " Fixing redirecting links in docs has finished; check all " \
65
71
" replacements before committing them"
You can’t perform that action at this time.
0 commit comments