Update doxygen build factory.

Originally committed to SVN as r3386.
This commit is contained in:
Amar Takhar 2009-08-11 06:47:22 +00:00
parent e046f753d9
commit 986ccb95f8

View file

@ -598,22 +598,20 @@ fwww_dox = factory.BuildFactory()
fwww_dox.addStep(source.SVN(mode="clobber", svnurl=source_unix)) fwww_dox.addStep(source.SVN(mode="clobber", svnurl=source_unix))
fwww_dox.addStep(shell.ShellCommand( fwww_dox.addStep(shell.ShellCommand(
name = "autogen", name = "doxygen",
description = "autogening", description = "doxygening",
descriptionDone = "autogen", descriptionDone = "doxygen",
haltOnFailure=True, logfiles={
command=["./autogen.sh", "--skip-configure"], 'doxygen.log': 'doxygen.log'
env={ },
'ACLOCAL_FLAGS': '-I /Users/verm/prefix/share/aclocal', command=[
'AUTOMAKE': '/Users/verm/prefix/bin/automake-1.9', "sh",
'ACLOCAL': '/Users/verm/prefix/bin/aclocal-1.9', "-x",
'AUTOCONF': '/Users/verm/prefix/bin/autoconf-2.61', "tinderbox/www/doxygen.sh"
'AUTOHEADER': '/Users/verm/prefix/bin/autoheader-2.61', ],
'BIN_CONVERT': '/Users/verm/prefix/bin/convert' haltOnFailure=True
}
)) ))
########## ##########
# BUILDERS # BUILDERS
########## ##########