summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index b919521..03ef3ff 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -9295,13 +9295,17 @@ void readConfiguration(int argc, char **argv)
if (genConfig)
{
- checkConfiguration();
- generateConfigFile(configName,shortList);
if (g_dumpConfigAsXML)
{
+ checkConfiguration();
+ generateConfigFile(configName,shortList);
dumpConfigAsXML();
exit(0);
}
+ else
+ {
+ generateConfigFile(configName,shortList);
+ }
cleanUpDoxygen();
exit(0);
}