diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2008-12-06 16:00:07 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2008-12-06 16:00:07 (GMT) |
commit | b2ff175fbaa113d17cc8c0873220580df1887b97 (patch) | |
tree | 76ffc77ee3c3548adca2711a1ad2ba2d0595ae70 /src/doxygen.cpp | |
parent | 78a0accf99eacf0a620cfad40c003be3be7bcd97 (diff) | |
download | Doxygen-b2ff175fbaa113d17cc8c0873220580df1887b97.zip Doxygen-b2ff175fbaa113d17cc8c0873220580df1887b97.tar.gz Doxygen-b2ff175fbaa113d17cc8c0873220580df1887b97.tar.bz2 |
Release-1.5.7.1-20081206
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 8 |
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); } |