From: Thomas Monjalon Date: Fri, 16 Oct 2020 02:45:59 +0000 (+0200) Subject: doc: fix project version in guides X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=7e23a23a826a7efea6545363aa6f1e5c63e228dc;p=dpdk.git doc: fix project version in guides The DPDK version should appear in the top left corner of the HTML guides. When dropping make, the variable version has been removed, so Sphinx stopped integrating the version number. Fixes: a4362f150204 ("doc: build without using make") Signed-off-by: Thomas Monjalon --- diff --git a/doc/guides/conf.py b/doc/guides/conf.py index 270754b901..2ffe5a5969 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -33,6 +33,7 @@ html_show_copyright = False highlight_language = 'none' release = environ['DPDK_VERSION'] +version = release master_doc = 'index'