mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-12-30 18:46:42 +00:00
doc: fallback to sphinx-1.0-build
Some platforms (actually just Centos6, again, of course) call "sphinx-build" as "sphinx-1.0-build", and so to work around this apparently useless name, fall back to sphinx-1.0-build when we can't find sphinx-build before displaying an error message. I am not doing in this the configure script because the sphinx makefiles are not Automake files and the less Automake in tree the better. Signed-off-by: Quentin Young <qlyoung@qlyoung.net>
This commit is contained in:
parent
9cb4ba0a3e
commit
adaf2d624b
@ -9,6 +9,9 @@ BUILDDIR = _build
|
||||
|
||||
# User-friendly check for sphinx-build
|
||||
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
|
||||
SPHINXBUILD = sphinx-1.0-build
|
||||
endif
|
||||
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
|
||||
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
|
||||
endif
|
||||
|
||||
|
||||
@ -9,6 +9,9 @@ BUILDDIR = _build
|
||||
|
||||
# User-friendly check for sphinx-build
|
||||
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
|
||||
SPHINXBUILD = sphinx-1.0-build
|
||||
endif
|
||||
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
|
||||
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
|
||||
endif
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user