diff options
author | Josh Morman <jmorman@perspectalabs.com> | 2019-07-18 09:17:38 -0400 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-07-19 23:43:06 +0200 |
commit | 6984088ea6e67e848803c947cf83ffaaa4f8e6c1 (patch) | |
tree | a455c9a0b84738ebb614e0c463305a00093047f3 /gr-utils/python/modtool/templates/gr-newmod/docs/doxygen/Doxyfile.swig_doc.in | |
parent | e97c79abff60d752574fbb1b8caae5b9a35b3fc1 (diff) |
modtool: put proper quotes when unescaped shell paths
Adds quotes to paths to prevent issues when the
user has a space in their OOT shell paths
Slight change to #2560 which should prevent CI from
broadly failing
Fixes #2443
Diffstat (limited to 'gr-utils/python/modtool/templates/gr-newmod/docs/doxygen/Doxyfile.swig_doc.in')
-rw-r--r-- | gr-utils/python/modtool/templates/gr-newmod/docs/doxygen/Doxyfile.swig_doc.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/templates/gr-newmod/docs/doxygen/Doxyfile.swig_doc.in b/gr-utils/python/modtool/templates/gr-newmod/docs/doxygen/Doxyfile.swig_doc.in index 33bc2afd07..cbe06d67ae 100644 --- a/gr-utils/python/modtool/templates/gr-newmod/docs/doxygen/Doxyfile.swig_doc.in +++ b/gr-utils/python/modtool/templates/gr-newmod/docs/doxygen/Doxyfile.swig_doc.in @@ -54,7 +54,7 @@ PROJECT_LOGO = # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. -OUTPUT_DIRECTORY = @OUTPUT_DIRECTORY@ +OUTPUT_DIRECTORY = "@OUTPUT_DIRECTORY@" # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output |