Skip to content

Commit

Permalink
Builder|Fixed: Doxygen invocations and chdir
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Feb 14, 2013
1 parent 90a7a5f commit 7bb3d34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions distrib/autobuild.py
Expand Up @@ -314,10 +314,9 @@ def generate_apidoc():
print >> sys.stderr, "\nPublic API 2.0 docs..."
system_command('doxygen api2.doxy >/dev/null 2>../doxyissues-api2.txt')
system_command('wc -l ../doxyissues-api2.txt')

os.chdir(os.path.join(builder.config.DISTRIB_DIR, '../doomsday/client'))

print >> sys.stderr, "\nPublic API docs..."
os.chdir(os.path.join(builder.config.DISTRIB_DIR, '../doomsday/client'))
system_command('doxygen api.doxy >/dev/null 2>../doxyissues-api.txt')
system_command('wc -l ../doxyissues-api.txt')

Expand All @@ -327,6 +326,7 @@ def generate_apidoc():
system_command('wc -l ../doxyissues-shell.txt')

print >> sys.stderr, "\nInternal Win32 docs..."
os.chdir(os.path.join(builder.config.DISTRIB_DIR, '../doomsday/client'))
system_command('doxygen client-win32.doxy >/dev/null 2>../doxyissues-win32.txt')
system_command('wc -l ../doxyissues-win32.txt')

Expand Down

0 comments on commit 7bb3d34

Please sign in to comment.