From: g0dil Date: Fri, 4 Sep 2009 21:14:18 +0000 (+0000) Subject: Fix documentation tag-file build X-Git-Url: http://g0dil.de/git?p=senf.git;a=commitdiff_plain;h=ab008e0569672520b0176bb55870a940885b5a8e Fix documentation tag-file build git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1388 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/site_scons/SENFSCons.py b/site_scons/SENFSCons.py index 65b882e..7b1f843 100644 --- a/site_scons/SENFSCons.py +++ b/site_scons/SENFSCons.py @@ -52,7 +52,7 @@ def Doxygen(env, doxyfile = "Doxyfile", extra_sources = [], output_directory = " # (need to exclude the 'clean' case, otherwise we'll have duplicate nodes) if not env.GetOption('clean'): tagfile = env.Doxygen(doxyfile, DOXYOPTS = opts + [ '--tagfile' ], - **vars(generate_tagfile = 'doc/${MODULE}.tag')) + **vars(generate_tagfile='doc/${MODULE}.tag')) env.Append(ALL_TAGFILES = [ tagfile[0].abspath ]) env.Depends(tagfile, [ env.File('#/site_scons/lib/doxygen.sh'), env.File('#/site_scons/lib/tag-munge.xsl') ]) @@ -62,7 +62,7 @@ def Doxygen(env, doxyfile = "Doxyfile", extra_sources = [], output_directory = " # Rule to generate HTML documentation doc = env.Doxygen(doxyfile, DOXYOPTS = opts + [ '--tagfiles', '"$ALL_TAGFILES"', '--html' ], - **vars(html = 'YES')) + **vars(html='YES', tagfiles='$ALL_TAGFILES')) env.Depends(doc, [ env.File('#/site_scons/lib/doxygen.sh'), env.File('#/site_scons/lib/html-munge.xsl') ])