This commit is contained in:
Thomas Kunze 2019-06-26 22:26:30 +02:00
parent 0e772d9f74
commit 1b6763a5cf
2 changed files with 2 additions and 2 deletions

View File

@ -2443,7 +2443,7 @@ DIAFILE_DIRS =
# generate a warning when it encounters a \startuml command in this case and
# will not generate output for the diagram.
PLANTUML_JAR_PATH = /usr/share/plantuml
PLANTUML_JAR_PATH = .
# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
# configuration file for plantuml.

View File

@ -5,7 +5,7 @@ read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
breathe_projects = {}
if read_the_docs_build:
subprocess.call('cd /usr/share/plantuml; sudo rm plantuml.jar; wget sudo wget https://sourceforge.net/projects/plantuml/files/plantuml.jar', shell=True)
subprocess.call('cd ..; wget https://sourceforge.net/projects/plantuml/files/plantuml.jar', shell=True)
subprocess.call('cd .. ; doxygen', shell=True)
breathe_projects['knx'] = '../build/xml'
html_extra_path = ['../build/html']