gallium/docs: prefix exts dir with underscore

It's generally considered good practice to use underscore-prefixes for
directories that contains non-doumentation files, so let's do this for
our custom extensions as well.

Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Acked-by: Eric Engestrom <eric@engestrom.ch>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5691>
This commit is contained in:
Erik Faye-Lund 2020-06-30 12:09:31 +02:00 committed by Marge Bot
parent 47d3b80428
commit 1d7bb2dde0
2 changed files with 1 additions and 1 deletions

View file

@ -16,7 +16,7 @@ import sys, os
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.append(os.path.abspath('exts'))
sys.path.append(os.path.abspath('_exts'))
# -- General configuration -----------------------------------------------------