From: Sergei Izmailov Date: Tue, 9 Jun 2020 10:05:31 +0000 (+0300) Subject: Fix renamed option use X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=3e1051f220c19ca7072c83885641566126ac3be1;p=blog.git Fix renamed option use --- diff --git a/documentation/doxygen.py b/documentation/doxygen.py index e8b44c24..423ea6e9 100755 --- a/documentation/doxygen.py +++ b/documentation/doxygen.py @@ -3834,7 +3834,7 @@ if __name__ == '__main__': # pragma: no cover doxyfile = os.path.join(os.path.dirname(os.path.abspath(args.config)), config['DOXYFILE']) else: # Make the Doxyfile path absolute, otherwise everything gets messed up - doxyfile = os.path.abspath(args.doxyfile) + doxyfile = os.path.abspath(args.config) state = State(config) parse_doxyfile(state, doxyfile)