From e221d227e32e474b7a9cd21861fcec90cd158fcb Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Mon, 5 Mar 2018 11:03:27 -0500 Subject: [PATCH] doc: allow env var to ovveride sphinx defaults Signed-off-by: Quentin Young --- doc/developer/Makefile | 6 +++--- doc/user/Makefile | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/developer/Makefile b/doc/developer/Makefile index 640a1ace38..f5e7cb60ec 100644 --- a/doc/developer/Makefile +++ b/doc/developer/Makefile @@ -2,9 +2,9 @@ # # You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +PAPER ?= BUILDDIR = _build # User-friendly check for sphinx-build diff --git a/doc/user/Makefile b/doc/user/Makefile index 640a1ace38..f5e7cb60ec 100644 --- a/doc/user/Makefile +++ b/doc/user/Makefile @@ -2,9 +2,9 @@ # # You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +PAPER ?= BUILDDIR = _build # User-friendly check for sphinx-build -- 2.39.5