diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-01-11 00:33:22 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-01-11 01:47:07 +0100 |
| commit | 32514e6d2b0dbcd0dff9f4da65ca6d6e9596feab (patch) | |
| tree | 8aacce936ab8f47208a459b30a19dd11dbc99920 /documentation/convert_doxyfile | |
| parent | 08e64283aacf0c26453c1be956bf15569b6d3585 (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-x | documentation/convert_doxyfile | 4 |
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 |
