summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRasmus Steinke <rasi@xssn.at>2018-07-18 12:52:39 +0200
committerRasmus Steinke <rasi@xssn.at>2018-07-18 12:52:39 +0200
commit641447bf9b78c6b6e8de74eb215ede8ad9765a79 (patch)
treea7b083458cbdb6e50e2b20566ed9c5aec2567a30 /doc
parent06c2aef3c79b3761370ec16b4fd77d2a763b42ab (diff)
remove remaining docbook syntax; update year in footer
Diffstat (limited to 'doc')
-rw-r--r--doc/conf.py2
-rw-r--r--doc/developer.rst4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 4228c29e2..f524c4538 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -30,7 +30,7 @@ master_doc = 'index'
# General information about the project.
project = 'Music Player Daemon'
-copyright = '2003-2017 The Music Player Daemon Project'
+copyright = '2003-2018 The Music Player Daemon Project'
author = 'Max Kellermann'
# The version info for the project you're documenting, acts as replacement for
diff --git a/doc/developer.rst b/doc/developer.rst
index 8f10c9435..316ed5eb1 100644
--- a/doc/developer.rst
+++ b/doc/developer.rst
@@ -54,7 +54,7 @@ If you already have a clone, update it:
git pull --rebase git://github.com/MusicPlayerDaemon/MPD master
-You can do without "--rebase", but we recommend that you rebase your repository on the "master" repository all the time.
+You can do without :option:`--rebase`, but we recommend that you rebase your repository on the "master" repository all the time.
Configure with the options :option:`--enable-debug --enable-werror`. Enable as many plugins as possible, to be sure that you don't break any disabled code.
@@ -124,6 +124,6 @@ Now run the analyzer:
.. code-block:: sh
- scan-build --use-c++=clang++ --use-cc=clang make</programlisting>
+ scan-build --use-c++=clang++ --use-cc=clang make
The options :option:`--use-c++` and :option:`--use-cc` are necessary because it invokes :command:`cc` for actually compiling the sources by default. That breaks, because MPD requires a C99 compiler.