Add monitoring-query-format.rst to $(docinput)
[ganeti-local] / autotools / sphinx-wrapper
1 #!/bin/bash
2 #
3
4 # Copyright (C) 2013 Google Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21 set -e -u -o pipefail
22
23 if [[ -e doc/manpages.rst ]]; then
24   echo 'doc/manpages.rst should not exist' >&2
25   exit 1
26 fi
27
28 if [[ -n "$ENABLE_MANPAGES" ]]; then
29   mv doc/manpages-enabled.rst doc/manpages.rst
30   rm doc/manpages-disabled.rst
31 else
32   mv doc/manpages-disabled.rst doc/manpages.rst
33   if [[ -e doc/manpages-enabled.rst ]]; then
34     rm doc/manpages-enabled.rst
35   fi
36 fi
37
38 exec "$@"