summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-07-25 12:10:08 (GMT)
committerGitHub <noreply@github.com>2018-07-25 12:10:08 (GMT)
commit452ef1661b8d35c4776f4d7e1e4551e523c3f46a (patch)
tree024f9a8057ac0ba98e42226010fa8d327ab525cd
parent3085b036aef7166a298b5c14961591bf4caba35e (diff)
parentf5e25bba9c01e473991ea6c7d8622a40e5c8f92d (diff)
downloadDoxygen-452ef1661b8d35c4776f4d7e1e4551e523c3f46a.zip
Doxygen-452ef1661b8d35c4776f4d7e1e4551e523c3f46a.tar.gz
Doxygen-452ef1661b8d35c4776f4d7e1e4551e523c3f46a.tar.bz2
Merge pull request #6407 from albert-github/feature/bug_doxyfile_options_2
Correction for `doxygen -g`
-rw-r--r--src/doxygen.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 78a73b8..68b49c2 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -10467,6 +10467,10 @@ void readConfiguration(int argc, char **argv)
{
configName="doxyfile";
}
+ else if (genConfig)
+ {
+ configName="Doxyfile";
+ }
else
{
err("Doxyfile not found and no input file specified!\n");