summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-07 08:46:04 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-08-07 08:46:04 (GMT)
commit84a7e93dfeae1cb34d24c73caea3ac3679f5f724 (patch)
tree40769d32be4be723864e3268b15b6be01b4458f8
parentfd73bd3a845fc1d9b4678eabebbd4457f376928e (diff)
downloadDoxygen-84a7e93dfeae1cb34d24c73caea3ac3679f5f724.zip
Doxygen-84a7e93dfeae1cb34d24c73caea3ac3679f5f724.tar.gz
Doxygen-84a7e93dfeae1cb34d24c73caea3ac3679f5f724.tar.bz2
issue 7166: Doxygen calls DOT differently depending on the output optimization selected.
-rw-r--r--src/vhdldocgen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdldocgen.cpp b/src/vhdldocgen.cpp
index bba249a..38a80ef 100644
--- a/src/vhdldocgen.cpp
+++ b/src/vhdldocgen.cpp
@@ -168,7 +168,7 @@ static void createSVG()
QCString vlargs="-Tsvg \""+ov+"\" "+dir ;
- if (portable_system("dot",vlargs)!=0)
+ if (portable_system(Config_getString(DOT_PATH) + "dot",vlargs)!=0)
{
err("could not create dot file");
}
@@ -3845,7 +3845,7 @@ void FlowChart::createSVG()
QCString vlargs="-Tsvg \""+ov+"\" "+dir ;
- if (portable_system("dot",vlargs)!=0)
+ if (portable_system(Config_getString(DOT_PATH) + "dot",vlargs)!=0)
{
err("could not create dot file");
}