From 8e98d20bc177bde4c8415b42e545beea6529df3a Mon Sep 17 00:00:00 2001 From: Antonio Augusto Alves Junior <aalvesju@gmail.com> Date: Tue, 8 Jun 2021 03:18:02 +0200 Subject: [PATCH] Update documentation/conf.py --- documentation/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/conf.py b/documentation/conf.py index 7c7f2a7d1..d3cac62ee 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -1,7 +1,7 @@ import sys import subprocess, os -def configureDoxyfile(template_file, output_file): +def configureDoxyfile(template_file, output_file, input_dir, output_dir): with open(template_file, 'r') as file : filedata = file.read() @@ -16,7 +16,7 @@ read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True' if read_the_docs_build: - configureDoxyfile("Doxyfile.in", "Doxyfile") + configureDoxyfile("Doxyfile.in", "Doxyfile", "../", "_build/workdir/doxygen") subprocess.call('mkdir -p _build/workdir/doxygen; doxygen Doxyfile', shell=True) html_extra_path = ['_build/workdir/'] -- GitLab