summaryrefslogtreecommitdiff
path: root/documentation/convert_doxyfile
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2024-01-11 00:33:22 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2024-01-11 01:47:07 +0100
commit32514e6d2b0dbcd0dff9f4da65ca6d6e9596feab (patch)
tree8aacce936ab8f47208a459b30a19dd11dbc99920 /documentation/convert_doxyfile
parent08e64283aacf0c26453c1be956bf15569b6d3585 (diff)
Quote doxygen command where necessary
... if the doxygen path includes spaces. Done for configure/make + CMake.
Diffstat (limited to 'documentation/convert_doxyfile')
-rwxr-xr-xdocumentation/convert_doxyfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/convert_doxyfile b/documentation/convert_doxyfile
index 57c3c28a6..1e06e760a 100755
--- a/documentation/convert_doxyfile
+++ b/documentation/convert_doxyfile
@@ -31,7 +31,7 @@ LOGFILE="$4"
# get doxygen version
-VERSION=$($DOXYGEN --version)
+VERSION=$("$DOXYGEN" --version)
# write info header to LOGFILE
@@ -41,4 +41,4 @@ echo "" >> $LOGFILE
# convert doxygen file and append errors and warnings to LOGFILE
-${DOXYGEN} -u -s - < $INFILE > $OUTFILE 2>> $LOGFILE
+"${DOXYGEN}" -u -s - < $INFILE > $OUTFILE 2>> $LOGFILE