diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-12-26 01:05:37 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-12-27 12:29:12 +0200 |
commit | dd1473d7630fff7b857503993207390d7599ebfe (patch) | |
tree | bfd8b2394d98276b0d421e5ca32c95260734912e | |
parent | 3fde82d8490e7fbdc02922d2b692fe3c0d9c8e29 (diff) |
Documentation: Restore alphabetical order of sources in meson.build
Sort the docs_sources variable in Documentation/meson.build to ease
maintenance.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
-rw-r--r-- | Documentation/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/meson.build b/Documentation/meson.build index 0cd5729a..b1f5bb52 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -47,17 +47,17 @@ endif if sphinx.found() docs_sources = [ - '../README.rst', 'coding-style.rst', 'conf.py', 'contributing.rst', 'docs.rst', 'environment_variables.rst', - 'index.rst', - 'guides/introduction.rst', 'guides/application-developer.rst', + 'guides/introduction.rst', 'guides/pipeline-handler.rst', 'guides/tracing.rst', + 'index.rst', + '../README.rst', ] release = 'release=v' + libcamera_git_version |